/* Options: Date: 2025-08-03 23:58:50 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: PhysicalInventoryCycleLookupRequest.* //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 PhysicalInventoryCycle { [DataMember] public virtual long Id { get; set; } [DataMember] public virtual string Description { get; set; } [DataMember] public virtual string EmployeeName { get; set; } [DataMember] public virtual DateTime CreationDate { get; set; } [DataMember] public virtual DateTime? LastUpdated { get; set; } } /// ///PhysicalInventoryCycleLookupRequires active-e Inventory Service /// [Route("/PhysicalInventoryCycleLookup", "GET")] [DataContract] public partial class PhysicalInventoryCycleLookupRequest : BaseSecureRequest, IReturn { /// ///Exactly one of SkuPk+LocationId, SaqPk, and SasPk must be passed in. /// [DataMember] [ApiMember(DataType="integer", Description="Exactly one of SkuPk+LocationId, SaqPk, and SasPk must be passed in.", Format="int64", Name="SkuPk", ParameterType="query")] public virtual long? SkuPk { get; set; } /// ///Exactly one of SkuPk+LocationId, SaqPk, and SasPk must be passed in. /// [DataMember] [ApiMember(DataType="integer", Description="Exactly one of SkuPk+LocationId, SaqPk, and SasPk must be passed in.", Format="int64", Name="LocationId", ParameterType="query")] public virtual long? LocationId { get; set; } /// ///Exactly one of SkuPk+LocationId, SaqPk, and SasPk must be passed in. /// [DataMember] [ApiMember(DataType="integer", Description="Exactly one of SkuPk+LocationId, SaqPk, and SasPk must be passed in.", Format="int64", Name="SaqPk", ParameterType="query")] public virtual long? SaqPk { get; set; } /// ///Exactly one of SkuPk+LocationId, SaqPk, and SasPk must be passed in. /// [DataMember] [ApiMember(DataType="integer", Description="Exactly one of SkuPk+LocationId, SaqPk, and SasPk must be passed in.", Format="int64", Name="SasPk", ParameterType="query")] public virtual long? SasPk { get; set; } } [DataContract] public partial class PhysicalInventoryCycleLookupResponse : BaseResponse { [DataMember] public virtual string LookupResult { get; set; } [DataMember] public virtual PhysicalInventoryCycle Cycle { get; set; } } }