/* Options: Date: 2026-07-16 21:56:31 Version: 8.30 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://initiation-test.sirva.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: ConsumerInitiation.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route(Path="/consumerinitiation", Verbs="POST") public static class ConsumerInitiation implements IPost { /** * First name of the consumer */ @ApiMember(Description="First name of the consumer", IsRequired=true) public String FirstName = null; /** * Last name of the consumer */ @ApiMember(Description="Last name of the consumer", IsRequired=true) public String LastName = null; /** * Program name */ @ApiMember(Description="Program name", IsRequired=true) public String Program = null; /** * Company name */ @ApiMember(Description="Company name", IsRequired=true) public String CompanyName = null; /** * Mobile phone number */ @ApiMember(Description="Mobile phone number") public String MobileNumber = null; /** * Preferred email address */ @ApiMember(Description="Preferred email address", IsRequired=true) public String PreferredEmail = null; /** * Current work location state */ @ApiMember(Description="Current work location state") public String CurrentWorkState = null; /** * Current work location country */ @ApiMember(Description="Current work location country") public String CurrentWorkCountry = null; /** * Destination work location state */ @ApiMember(Description="Destination work location state") public String DestinationWorkState = null; /** * Destination work location country */ @ApiMember(Description="Destination work location country") public String DestinationWorkCountry = null; /** * Preferred work location state */ @ApiMember(Description="Preferred work location state") public String PreferredWorkState = null; /** * Preferred work location country */ @ApiMember(Description="Preferred work location country") public String PreferredWorkCountry = null; public String getFirstName() { return FirstName; } public ConsumerInitiation setFirstName(String value) { this.FirstName = value; return this; } public String getLastName() { return LastName; } public ConsumerInitiation setLastName(String value) { this.LastName = value; return this; } public String getProgram() { return Program; } public ConsumerInitiation setProgram(String value) { this.Program = value; return this; } public String getCompanyName() { return CompanyName; } public ConsumerInitiation setCompanyName(String value) { this.CompanyName = value; return this; } public String getMobileNumber() { return MobileNumber; } public ConsumerInitiation setMobileNumber(String value) { this.MobileNumber = value; return this; } public String getPreferredEmail() { return PreferredEmail; } public ConsumerInitiation setPreferredEmail(String value) { this.PreferredEmail = value; return this; } public String getCurrentWorkState() { return CurrentWorkState; } public ConsumerInitiation setCurrentWorkState(String value) { this.CurrentWorkState = value; return this; } public String getCurrentWorkCountry() { return CurrentWorkCountry; } public ConsumerInitiation setCurrentWorkCountry(String value) { this.CurrentWorkCountry = value; return this; } public String getDestinationWorkState() { return DestinationWorkState; } public ConsumerInitiation setDestinationWorkState(String value) { this.DestinationWorkState = value; return this; } public String getDestinationWorkCountry() { return DestinationWorkCountry; } public ConsumerInitiation setDestinationWorkCountry(String value) { this.DestinationWorkCountry = value; return this; } public String getPreferredWorkState() { return PreferredWorkState; } public ConsumerInitiation setPreferredWorkState(String value) { this.PreferredWorkState = value; return this; } public String getPreferredWorkCountry() { return PreferredWorkCountry; } public ConsumerInitiation setPreferredWorkCountry(String value) { this.PreferredWorkCountry = value; return this; } } }