Models
Event Model
Represents a partner event with various details such as the name, venue, date, and associated mappings and sales.
Properties
- Id (
string?): The unique identifier for the event, typically formatted as anevt_hash. - Name (
string?): The name of the event. - Venue (
string?): The venue where the event is held. - City (
string?): The city where the event takes place. - State (
string?): The state where the event is located. - Country (
string?): The country where the event is held. - Date (
string?): The date and time of the event in ISO 8601 format (e.g.,2021-09-24T19:00:00-04:00). - TimeZone (
string?): The time zone of the event. - Category (
short): The event type. - Mappings (
List<PartnerEventMapping>): A list of mappings associated with the event. - Sales (
List<SaleViewModel>): A list of sales associated with the event.

