/* Options: Date: 2025-05-10 00:39:47 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: PhysicalInventoryCycleLookupRequest.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } // @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; // @DataMember // @ApiMember(DataType="string", Name="OAuthToken", ParameterType="header") public OAuthToken: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @DataContract export class BaseSecureRequest extends BaseRequest { /** @description */ // @DataMember // @ApiMember(DataType="string", Description="", Name="Token", ParameterType="Header") public Token: string; /** @description */ // @DataMember // @ApiMember(DataType="string", Description="", Name="DeviceId", ParameterType="Header") public DeviceId: string; /** @description */ // @DataMember // @ApiMember(DataType="string", Description="", IsRequired=true, Name="AppId", ParameterType="Header") public AppId: string; public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } } // @DataContract export class PhysicalInventoryCycle { // @DataMember public Id: number; // @DataMember public Description: string; // @DataMember public EmployeeName: string; // @DataMember public CreationDate: string; // @DataMember public LastUpdated?: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @DataContract export class BaseResponse { /** @description */ // @DataMember // @ApiMember(DataType="BaseResponseResult", Description="", Name="Status", ParameterType="body") public Status: BaseResponseResult; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @DataContract export class PhysicalInventoryCycleLookupResponse extends BaseResponse { // @DataMember public LookupResult: string; // @DataMember public Cycle: PhysicalInventoryCycle; public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } } /** @description PhysicalInventoryCycleLookupRequires active-e Inventory Service */ // @Route("/PhysicalInventoryCycleLookup", "GET") // @DataContract export class PhysicalInventoryCycleLookupRequest extends BaseSecureRequest implements IReturn { /** @description 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 SkuPk?: number; /** @description 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 LocationId?: number; /** @description 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 SaqPk?: number; /** @description 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 SasPk?: number; public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } public getTypeName() { return 'PhysicalInventoryCycleLookupRequest'; } public getMethod() { return 'GET'; } public createResponse() { return new PhysicalInventoryCycleLookupResponse(); } }