/* Options: Date: 2026-07-16 21:56:58 Version: 8.30 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://initiation-test.sirva.com //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ConsumerInitiation.* //ExcludeTypes: //DefaultImports: */ export interface IPost { } // @Route("/consumerinitiation", "POST") export class ConsumerInitiation implements IPost { /** @description First name of the consumer */ // @ApiMember(Description="First name of the consumer", IsRequired=true) public FirstName: string; /** @description Last name of the consumer */ // @ApiMember(Description="Last name of the consumer", IsRequired=true) public LastName: string; /** @description Program name */ // @ApiMember(Description="Program name", IsRequired=true) public Program: string; /** @description Company name */ // @ApiMember(Description="Company name", IsRequired=true) public CompanyName: string; /** @description Mobile phone number */ // @ApiMember(Description="Mobile phone number") public MobileNumber: string; /** @description Preferred email address */ // @ApiMember(Description="Preferred email address", IsRequired=true) public PreferredEmail: string; /** @description Current work location state */ // @ApiMember(Description="Current work location state") public CurrentWorkState: string; /** @description Current work location country */ // @ApiMember(Description="Current work location country") public CurrentWorkCountry: string; /** @description Destination work location state */ // @ApiMember(Description="Destination work location state") public DestinationWorkState: string; /** @description Destination work location country */ // @ApiMember(Description="Destination work location country") public DestinationWorkCountry: string; /** @description Preferred work location state */ // @ApiMember(Description="Preferred work location state") public PreferredWorkState: string; /** @description Preferred work location country */ // @ApiMember(Description="Preferred work location country") public PreferredWorkCountry: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'ConsumerInitiation'; } public getMethod() { return 'POST'; } public createResponse() {} }