edutap.wallet_google.models.datatypes.event.EventSeat#
- pydantic model edutap.wallet_google.models.datatypes.event.EventSeat#
see: https://developers.google.com/wallet/reference/rest/v1/eventticketobject#eventseat
Show JSON schema
{ "title": "EventSeat", "description": "see: https://developers.google.com/wallet/reference/rest/v1/eventticketobject#eventseat", "type": "object", "properties": { "kind": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": "walletobjects#eventSeat", "deprecated": true, "description": "deprecated", "title": "Kind" }, "seat": { "anyOf": [ { "$ref": "#/$defs/LocalizedString" }, { "type": "null" } ], "default": null }, "row": { "anyOf": [ { "$ref": "#/$defs/LocalizedString" }, { "type": "null" } ], "default": null }, "section": { "anyOf": [ { "$ref": "#/$defs/LocalizedString" }, { "type": "null" } ], "default": null }, "gate": { "anyOf": [ { "$ref": "#/$defs/LocalizedString" }, { "type": "null" } ], "default": null } }, "$defs": { "LocalizedString": { "description": "see: https://developers.google.com/wallet/generic/rest/v1/LocalizedString", "properties": { "defaultValue": { "$ref": "#/$defs/TranslatedString" }, "translatedValues": { "default": [], "items": { "$ref": "#/$defs/TranslatedString" }, "title": "Translatedvalues", "type": "array" } }, "required": [ "defaultValue" ], "title": "LocalizedString", "type": "object" }, "TranslatedString": { "description": "see: https://developers.google.com/wallet/generic/rest/v1/LocalizedString#translatedstring", "properties": { "language": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "Language" }, "value": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "Value" } }, "title": "TranslatedString", "type": "object" } }, "additionalProperties": false }
- Config:
extra: str = forbid
- Fields:
gate (edutap.wallet_google.models.datatypes.localized_string.LocalizedString | None)
row (edutap.wallet_google.models.datatypes.localized_string.LocalizedString | None)
seat (edutap.wallet_google.models.datatypes.localized_string.LocalizedString | None)
section (edutap.wallet_google.models.datatypes.localized_string.LocalizedString | None)
- field gate: LocalizedString | None = None#
- field row: LocalizedString | None = None#
- field seat: LocalizedString | None = None#
- field section: LocalizedString | None = None#
- kind: str | None#
Read-only data descriptor used to emit a runtime deprecation warning before accessing a deprecated field.
- Attributes:
msg: The deprecation message to be emitted. wrapped_property: The property instance if the deprecated field is a computed field, or None. field_name: The name of the field being deprecated.