/* Options: Date: 2025-05-10 00:49:54 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: GetSchedulingGroupingsRequest.* //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; 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; } } /// ///GetSchedulingGroupingsRequires active-e Lesson Scheduling Service /// [Route("/GetSchedulingGroupings", "GET")] [DataContract] public partial class GetSchedulingGroupingsRequest : BaseRequest, IReturn { /// ///Grouping ID to look up. If sent, all other parameters will be ignored. /// [DataMember] [ApiMember(DataType="integer", Description="Grouping ID to look up. If sent, all other parameters will be ignored.", Format="int64", Name="GroupingId", ParameterType="query")] public virtual long? GroupingId { get; set; } /// ///If sent, only groupings with at least one lesson type taught by the sent instructor will be returned. /// [DataMember] [ApiMember(DataType="integer", Description="If sent, only groupings with at least one lesson type taught by the sent instructor will be returned.", Format="int32", Name="InstructorId", ParameterType="query")] public virtual int? InstructorId { get; set; } /// ///If sent, only groupings taught at the sent location will be returned. /// [DataMember] [ApiMember(DataType="integer", Description="If sent, only groupings taught at the sent location will be returned.", Format="int64", Name="LocationId", ParameterType="query")] public virtual long? LocationId { get; set; } /// ///If sent, should be Private or Group. If Private, only groupings containing Private Lesson Types will be returned. If Group, only groupings containing Group Lesson Types will be returned. /// [DataMember] [ApiMember(DataType="integer", Description="If sent, should be Private or Group. If Private, only groupings containing Private Lesson Types will be returned. If Group, only groupings containing Group Lesson Types will be returned.", Format="int64", Name="MembershipType", ParameterType="query")] public virtual string MembershipType { get; set; } } [DataContract] public partial class GetSchedulingGroupingsResponse : BaseResponse { public GetSchedulingGroupingsResponse() { Groupings = new List{}; } [DataMember] public virtual List Groupings { get; set; } [DataContract] public partial class GroupingInfo { [DataMember] public virtual long Id { get; set; } [DataMember] public virtual string Desc { get; set; } } } }