edutap.wallet_google.models.datatypes.smarttap.IssuerContactInfo#
- pydantic model edutap.wallet_google.models.datatypes.smarttap.IssuerContactInfo#
see: https://developers.google.com/wallet/generic/rest/v1/issuer#issuercontactinfo
Show JSON schema
{ "title": "IssuerContactInfo", "description": "see: https://developers.google.com/wallet/generic/rest/v1/issuer#issuercontactinfo", "type": "object", "properties": { "name": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "Name" }, "phone": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "Phone" }, "homepageUrl": { "anyOf": [ { "format": "uri", "maxLength": 2083, "minLength": 1, "type": "string" }, { "type": "null" } ], "default": null, "title": "Homepageurl" }, "email": { "anyOf": [ { "format": "email", "type": "string" }, { "type": "null" } ], "default": null, "title": "Email" }, "alertsEmails": { "anyOf": [ { "items": { "format": "email", "type": "string" }, "type": "array" }, { "type": "null" } ], "default": null, "title": "Alertsemails" } } }
- Fields:
- field alertsEmails: list[EmailStr] | None = None#
- field email: EmailStr | None = None#
- field homepageUrl: HttpUrl | None = None#
- field name: str | None = None#
- field phone: str | None = None#