edutap.wallet_google.models.primitives.localized_string.TranslatedString#

pydantic model edutap.wallet_google.models.primitives.localized_string.TranslatedString#

see: https://developers.google.com/wallet/generic/rest/v1/LocalizedString#translatedstring

Show JSON schema
{
   "title": "TranslatedString",
   "description": "see: https://developers.google.com/wallet/generic/rest/v1/LocalizedString#translatedstring",
   "type": "object",
   "properties": {
      "language": {
         "anyOf": [
            {
               "type": "string"
            },
            {
               "type": "null"
            }
         ],
         "default": null,
         "title": "Language"
      },
      "value": {
         "anyOf": [
            {
               "type": "string"
            },
            {
               "type": "null"
            }
         ],
         "default": null,
         "title": "Value"
      }
   }
}

Fields:
field language: str | None = None#
field value: str | None = None#