edutap.wallet_google.models.primitives.money.Money#

pydantic model edutap.wallet_google.models.primitives.money.Money#

see: https://developers.google.com/wallet/tickets/events/rest/v1/Money

Show JSON schema
{
   "title": "Money",
   "description": "see: https://developers.google.com/wallet/tickets/events/rest/v1/Money",
   "type": "object",
   "properties": {
      "micros": {
         "anyOf": [
            {
               "type": "string"
            },
            {
               "type": "null"
            }
         ],
         "default": null,
         "title": "Micros"
      },
      "currencyCode": {
         "anyOf": [
            {
               "type": "string"
            },
            {
               "type": "null"
            }
         ],
         "default": null,
         "title": "Currencycode"
      }
   }
}

Fields:
field currencyCode: str | None = None#
field micros: str | None = None#