/* Options: Date: 2025-10-24 17:25:58 Version: 8.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://active-ewebservice.biz/aeservices30/api //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ICSCalendarRequest.* //ExcludeTypes: //DefaultImports: */ // @DataContract export class BaseRequest { /** @description This is your AIM API Key provided by Tri-Tech */ // @DataMember // @ApiMember(DataType="string", Description="This is your AIM API Key provided by Tri-Tech", IsRequired=true, Name="ApiKey", ParameterType="Header") public ApiKey: string; /** @description The OAuthToken token return by AeServices30 */ // @DataMember // @ApiMember(DataType="string", Description="The OAuthToken token return by AeServices30", IsRequired=true, Name="OAuthToken", ParameterType="Header") public OAuthToken: string; /** @description The Device ID of the Mobile Device. Not used for non-mobile devices. */ // @DataMember // @ApiMember(DataType="string", Description="The Device ID of the Mobile Device. Not used for non-mobile devices.", Name="DeviceId", ParameterType="Header") public DeviceId: string; /** @description An identifier for your integration */ // @DataMember // @ApiMember(DataType="string", Description="An identifier for your integration", IsRequired=true, Name="AppId", ParameterType="Header") public AppId: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } /** @description ICSCalendarRequires active-e Lesson Scheduling Service */ // @Route("/ICSCalendar", "GET") // @Route("/ICSCalendar/{Instructorid}", "GET") // @DataContract export class ICSCalendarRequest extends BaseRequest { /** @description Instructor ID. Required unless the Instructor path parameter is sent. */ // @DataMember // @ApiMember(DataType="int", Description="Instructor ID. Required unless the Instructor path parameter is sent.", Name="InstructorId", ParameterType="query") public InstructorId: number; /** @description Location ID. Optional. */ // @DataMember // @ApiMember(DataType="int", Description="Location ID. Optional.", Name="InstructorId", ParameterType="query") public LocationId?: number; public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } public getTypeName() { return 'ICSCalendarRequest'; } public getMethod() { return 'GET'; } public createResponse() {} }