export interface MSCCTour { /** * The tour group name. */ title: string; /** * The tour group location. */ location: string; /** * The tour type. */ type: string; /** * The event start date. */ startDate: string; /** * The event start timestamp without time */ dateRange: string; /** * The event end date. */ endDate: string; /** * The combined start and end date. */ totalDate: string; /** * The event start year. */ startYear: string; /** * The event start month. */ startMonth: string; /** * The event start day. */ startDay: string; } export interface MSCCRawTour { '@odata.type': string; '@odata.id': string; '@odata.etag': string; '@odata.editLink': string; 'hso_endtime@OData.Community.Display.V1.FormattedValue': string; 'hso_endtime@odata.type': string; hso_endtime: string; 'hso_starttime@OData.Community.Display.V1.FormattedValue': string; 'hso_starttime@odata.type': string; hso_starttime: string; '_hso_tourgroup_value@OData.Community.Display.V1.FormattedValue': string; '_hso_tourgroup_value@Microsoft.Dynamics.CRM.associatednavigationproperty': string; '_hso_tourgroup_value@Microsoft.Dynamics.CRM.lookuplogicalname': string; '_hso_tourgroup_value@odata.type': string; _hso_tourgroup_value: string; '_hso_tourtype_value@OData.Community.Display.V1.FormattedValue': string; '_hso_tourtype_value@Microsoft.Dynamics.CRM.associatednavigationproperty': string; '_hso_tourtype_value@Microsoft.Dynamics.CRM.lookuplogicalname': string; '_hso_tourtype_value@odata.type': string; _hso_tourtype_value: string; 'hso_tourid@odata.type': string; hso_tourid: string; 'hso_TourGroup@odata.associationLink': string; 'hso_TourGroup@odata.navigationLink': string; 'hso_TourType@odata.associationLink': string; 'hso_TourType@odata.navigationLink': string; hso_TourGroup: { address1_city: string; }; }