edutap.wallet_google.models.datatypes.message.Message#
- pydantic model edutap.wallet_google.models.datatypes.message.Message#
see: https://developers.google.com/wallet/tickets/events/rest/v1/Message
Show JSON schema
{ "title": "Message", "description": "see: https://developers.google.com/wallet/tickets/events/rest/v1/Message", "type": "object", "properties": { "kind": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": "walletobjects#walletObjectMessage", "deprecated": true, "description": "deprecated", "title": "Kind" }, "id": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "Id" }, "messageType": { "$ref": "#/$defs/MessageType", "default": "MESSAGE_TYPE_UNSPECIFIED" }, "displayInterval": { "anyOf": [ { "$ref": "#/$defs/TimeInterval" }, { "type": "null" } ], "default": null }, "header": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "Header" }, "localizedHeader": { "anyOf": [ { "$ref": "#/$defs/LocalizedString" }, { "type": "null" } ], "default": null }, "body": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "Body" }, "localizedBody": { "anyOf": [ { "$ref": "#/$defs/LocalizedString" }, { "type": "null" } ], "default": null } }, "$defs": { "DateTime": { "description": "see: https://developers.google.com/wallet/tickets/events/rest/v1/DateTime", "properties": { "date": { "format": "date-time", "title": "Date", "type": "string" } }, "required": [ "date" ], "title": "DateTime", "type": "object" }, "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" }, "MessageType": { "description": "see: https://developers.google.com/wallet/tickets/events/rest/v1/Message#messagetype", "enum": [ "messageTypeUnspecified", "MESSAGE_TYPE_UNSPECIFIED", "text", "TEXT", "textAndNotify", "TEXT_AND_NOTIFY", "expirationNotification", "EXPIRATION_NOTIFICATION" ], "title": "MessageType", "type": "string" }, "TimeInterval": { "description": "see: https://developers.google.com/wallet/tickets/events/rest/v1/TimeInterval", "properties": { "kind": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": "walletobjects#timeInterval", "deprecated": true, "description": "deprecated", "title": "Kind" }, "start": { "anyOf": [ { "$ref": "#/$defs/DateTime" }, { "type": "null" } ], "default": null }, "end": { "anyOf": [ { "$ref": "#/$defs/DateTime" }, { "type": "null" } ], "default": null } }, "title": "TimeInterval", "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" } } }
- Fields:
displayInterval (edutap.wallet_google.models.datatypes.datetime.TimeInterval | None)
localizedBody (edutap.wallet_google.models.datatypes.localized_string.LocalizedString | None)
localizedHeader (edutap.wallet_google.models.datatypes.localized_string.LocalizedString | None)
messageType (edutap.wallet_google.models.datatypes.enums.MessageType)
- field body: str | None = None#
- field displayInterval: TimeInterval | None = None#
- field header: str | None = None#
- field id: str | None = None#
- field localizedBody: LocalizedString | None = None#
- field localizedHeader: LocalizedString | None = None#
- field messageType: MessageType = MessageType.MESSAGE_TYPE_UNSPECIFIED#
- 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.