/* Options:
Date: 2025-11-03 21:14:14
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: ScheduledExchangeOptionsRequest.*
//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; }
        ///
        ///The OAuthToken token return by AeServices30
        ///
        [DataMember]
        [ApiMember(DataType="string", Description="The OAuthToken token return by AeServices30", IsRequired=true, Name="OAuthToken", ParameterType="Header")]
        public virtual string OAuthToken { get; set; }
        ///
        ///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 virtual string DeviceId { get; set; }
        ///
        ///An identifier for your integration
        ///
        [DataMember]
        [ApiMember(DataType="string", Description="An identifier for your integration", IsRequired=true, Name="AppId", ParameterType="Header")]
        public virtual string AppId { get; set; }
    }
    [DataContract]
    public partial class BaseResponse
    {
        ///
        ///
        ///
        [DataMember]
        [ApiMember(DataType="BaseResponseResult", Description="", Name="Status", ParameterType="body")]
        public virtual BaseResponseResult Status { get; set; }
    }
    [DataContract]
    public partial class BaseSecureRequest
        : BaseRequest
    {
        ///
        ///The Login Token return by the Security API. Required for secured calls.
        ///
        [DataMember]
        [ApiMember(DataType="string", Description="The Login Token return by the Security API. Required for secured calls.", Name="Token", ParameterType="Header")]
        public virtual string Token { get; set; }
    }
    [DataContract]
    public partial class ScheduledExchangeOptionsInfo
    {
        [DataMember]
        public virtual long ID { get; set; }
        [DataMember]
        public virtual string Option { get; set; }
    }
    ///
    ///ScheduledExchangeOptionsRequires active-e Contracts Service.
    ///
    [Route("/ScheduledExchangeOptions", "GET")]
    [DataContract]
    public partial class ScheduledExchangeOptionsRequest
        : BaseSecureRequest, IReturn
    {
    }
    [DataContract]
    public partial class ScheduledExchangeOptionsResponse
        : BaseResponse
    {
        public ScheduledExchangeOptionsResponse()
        {
            Options = new List{};
        }
        [DataMember]
        public virtual List Options { get; set; }
    }
}