/* Options: Date: 2025-05-10 00:12:40 Version: 8.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://active-ewebservice.biz/aeservices30/api //GlobalNamespace: //MakePartial: True //MakeVirtual: True //MakeInternal: False //MakeDataContractsExtensible: False //AddNullableAnnotations: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //InitializeCollections: True //ExportValueTypes: False IncludeTypes: GetSchedulingLocationsRequest.* //ExcludeTypes: //AddNamespaces: //AddDefaultXmlNamespace: http://schemas.servicestack.net/types */ using System; using System.Collections; using System.Collections.Generic; using System.Runtime.Serialization; using ServiceStack; using ServiceStack.DataAnnotations; using AIM.WebService; using AIM; namespace AIM { [DataContract] public partial class LocationInfo { [DataMember] public virtual long Id { get; set; } [DataMember] public virtual string Desc { get; set; } [DataMember] public virtual string ShortDesc { get; set; } [DataMember] public virtual string Region { get; set; } [DataMember] public virtual decimal Latitude { get; set; } [DataMember] public virtual decimal Longitude { get; set; } [DataMember] public virtual string InStorePickup { get; set; } [DataMember] public virtual bool Active { get; set; } [DataMember] public virtual int? CashSaleAcct { get; set; } } } namespace AIM.WebService { [DataContract] public partial class BaseRequest { /// ///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 virtual string ApiKey { get; set; } [DataMember] [ApiMember(DataType="string", Name="OAuthToken", ParameterType="header")] public virtual string OAuthToken { get; set; } } [DataContract] public partial class BaseResponse { /// /// /// [DataMember] [ApiMember(DataType="BaseResponseResult", Description="", Name="Status", ParameterType="body")] public virtual BaseResponseResult Status { get; set; } } /// ///GetSchedulingLocationsRequires active-e Lesson Scheduling Service /// [Route("/GetSchedulingLocations", "GET")] [DataContract] public partial class GetSchedulingLocationsRequest : BaseRequest, IReturn { /// ///Location lookup. If sent, all other parameters will be ignored. /// [DataMember] [ApiMember(DataType="integer", Description="Location lookup. If sent, all other parameters will be ignored.", Format="int64", Name="LocationId", ParameterType="query")] public virtual long? LocationId { get; set; } /// ///If sent, only locations that offer this lesson type will be returned. /// [DataMember] [ApiMember(DataType="integer", Description="If sent, only locations that offer this lesson type will be returned.", Format="int64", Name="TypeId", ParameterType="query")] public virtual long? TypeId { get; set; } /// ///If sent, only locations that offer lessons of this grouping will be returned. /// [DataMember] [ApiMember(DataType="integer", Description="If sent, only locations that offer lessons of this grouping will be returned.", Format="int64", Name="GroupingId", ParameterType="query")] public virtual long? GroupingId { get; set; } /// ///If sent, only locations where the sent instructor teaches will be returned. /// [DataMember] [ApiMember(DataType="integer", Description="If sent, only locations where the sent instructor teaches will be returned.", Format="int32", Name="InstructorId", ParameterType="query")] public virtual int? InstructorId { get; set; } [DataMember] public virtual bool IncludeInactiveLocations { get; set; } } [DataContract] public partial class GetSchedulingLocationsResponse : BaseResponse { public GetSchedulingLocationsResponse() { Locations = new List{}; } [DataMember] public virtual List Locations { get; set; } } }