/* Options: Date: 2026-07-16 21:58:20 Version: 8.30 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://initiation-test.sirva.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ConsumerInitiation.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/consumerinitiation", Verbs="POST") open class ConsumerInitiation : IPost { /** * First name of the consumer */ @ApiMember(Description="First name of the consumer", IsRequired=true) var FirstName:String? = null /** * Last name of the consumer */ @ApiMember(Description="Last name of the consumer", IsRequired=true) var LastName:String? = null /** * Program name */ @ApiMember(Description="Program name", IsRequired=true) var Program:String? = null /** * Company name */ @ApiMember(Description="Company name", IsRequired=true) var CompanyName:String? = null /** * Mobile phone number */ @ApiMember(Description="Mobile phone number") var MobileNumber:String? = null /** * Preferred email address */ @ApiMember(Description="Preferred email address", IsRequired=true) var PreferredEmail:String? = null /** * Current work location state */ @ApiMember(Description="Current work location state") var CurrentWorkState:String? = null /** * Current work location country */ @ApiMember(Description="Current work location country") var CurrentWorkCountry:String? = null /** * Destination work location state */ @ApiMember(Description="Destination work location state") var DestinationWorkState:String? = null /** * Destination work location country */ @ApiMember(Description="Destination work location country") var DestinationWorkCountry:String? = null /** * Preferred work location state */ @ApiMember(Description="Preferred work location state") var PreferredWorkState:String? = null /** * Preferred work location country */ @ApiMember(Description="Preferred work location country") var PreferredWorkCountry:String? = null }