/* Options: Date: 2026-06-15 05:40:37 Version: 10.06 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: UpdateCustomerRequest.* //ExcludeTypes: //DefaultImports: */ // @ts-nocheck 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; /** @description The OAuthToken token return by AeServices30 */ // @DataMember // @ApiMember(DataType="string", Description="The OAuthToken token return by AeServices30", IsRequired=true, Name="OAuthToken", ParameterType="Header") public OAuthToken: string; /** @description 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 DeviceId?: string; /** @description An identifier for your integration */ // @DataMember // @ApiMember(DataType="string", Description="An identifier for your integration", IsRequired=true, Name="AppId", ParameterType="Header") public AppId: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @DataContract export class BaseSecureRequest extends BaseRequest { /** @description 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 Token?: string; public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } } // @DataContract(Name="FormInput") export class FormInput { /** @description Field name of the Input Field. If linking to an Attribute, this should match the Tag value. */ // @DataMember // @ApiMember(DataType="string", Description="Field name of the Input Field. If linking to an Attribute, this should match the Tag value.", IsRequired=true, Name="Key", ParameterType="body") public Key: string; /** @description Value of the Input Field. */ // @DataMember // @ApiMember(DataType="string", Description="Value of the Input Field.", IsRequired=true, Name="Value", ParameterType="body") public Value: string; /** @description Whether or not the field is encryped with the C2B encryption key. */ // @DataMember // @ApiMember(DataType="boolean", Description="Whether or not the field is encryped with the C2B encryption key.", Name="Encrypted", ParameterType="body") public Encrypted: boolean; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @DataContract export class LicenseInfo { // @DataMember public Number?: string; // @DataMember public Height?: string; // @DataMember public Weight?: string; // @DataMember public Hair?: string; // @DataMember public Eyes?: string; // @DataMember public Expiration?: string; // @DataMember public Birthday?: string; // @DataMember public Ethnicity?: string; // @DataMember public Gender?: string; // @DataMember public State?: 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 UpdateCustomerResponse extends BaseResponse { public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } } /** @description UpdateCustomerRequires active-e Customer Service. */ // @Route("/UpdateCustomer", "POST") // @DataContract export class UpdateCustomerRequest extends BaseSecureRequest implements IReturn { /** @description Customer Acct # */ // @DataMember // @ApiMember(DataType="integer", Description="Customer Acct #", Format="int32", IsRequired=true, Name="Acct", ParameterType="query") public Acct: number; /** @description Location ID */ // @DataMember // @ApiMember(DataType="integer", Description="Location ID", Format="int64", Name="LocationId", ParameterType="query") public LocationId?: number; /** @description Customer Default Id */ // @DataMember // @ApiMember(DataType="integer", Description="Customer Default Id", Format="int64", Name="CustomerDefaultId", ParameterType="query") public CustomerDefaultId?: number; /** @description Tax Authority Id */ // @DataMember // @ApiMember(DataType="integer", Description="Tax Authority Id", Format="int64", Name="TaxAuthorityId", ParameterType="query") public TaxAuthorityId?: number; // @DataMember public Name?: string; // @DataMember public Attn?: string; // @DataMember public Address1?: string; // @DataMember public Address2?: string; // @DataMember public City?: string; // @DataMember public State?: string; // @DataMember public Zip?: string; // @DataMember public Country?: string; // @DataMember public HomePhone?: string; // @DataMember public WorkPhone?: string; // @DataMember public CellPhone?: string; // @DataMember public Employer?: string; // @DataMember public SS?: string; // @DataMember public Email?: string; /** @description Email Method. Set this to Word, PDF, HTML, or None */ // @DataMember // @ApiMember(DataType="string", Description="Email Method. Set this to Word, PDF, HTML, or None", Name="EmailMethod", ParameterType="query") public EmailMethod?: string; // @DataMember public Notes?: string; // @DataMember public DriversLicenseInfo?: LicenseInfo; /** @description If TRUE, all applicable settings from the customer default will be copied over to the customer. Generally only used when changing the customer default. */ // @DataMember // @ApiMember(DataType="bool", Description="If TRUE, all applicable settings from the customer default will be copied over to the customer. Generally only used when changing the customer default.", Name="RefreshCustomerDefaults", ParameterType="query") public RefreshCustomerDefaults: boolean; /** @description */ // @DataMember // @ApiMember(DataType="array", Description="", Name="FormInputList", ParameterType="query") public FormInputList?: FormInput[]; public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } public getTypeName() { return 'UpdateCustomerRequest'; } public getMethod() { return 'POST'; } public createResponse() { return new UpdateCustomerResponse(); } }