""" 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 #GlobalNamespace: #AddServiceStackTypes: True #AddResponseStatus: False #AddImplicitVersion: #AddDescriptionAsComments: True IncludeTypes: ConsumerInitiation.* #ExcludeTypes: #DefaultImports: datetime,decimal,marshmallow.fields:*,servicestack:*,typing:*,dataclasses:dataclass/field,dataclasses_json:dataclass_json/LetterCase/Undefined/config,enum:Enum/IntEnum #DataClass: #DataClassJson: """ import datetime import decimal from marshmallow.fields import * from servicestack import * from typing import * from dataclasses import dataclass, field from dataclasses_json import dataclass_json, LetterCase, Undefined, config from enum import Enum, IntEnum # @Route("/consumerinitiation", "POST") @dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE) @dataclass class ConsumerInitiation(IPost): # @ApiMember(Description="First name of the consumer", IsRequired=true) first_name: Optional[str] = None """ First name of the consumer """ # @ApiMember(Description="Last name of the consumer", IsRequired=true) last_name: Optional[str] = None """ Last name of the consumer """ # @ApiMember(Description="Program name", IsRequired=true) program: Optional[str] = None """ Program name """ # @ApiMember(Description="Company name", IsRequired=true) company_name: Optional[str] = None """ Company name """ # @ApiMember(Description="Mobile phone number") mobile_number: Optional[str] = None """ Mobile phone number """ # @ApiMember(Description="Preferred email address", IsRequired=true) preferred_email: Optional[str] = None """ Preferred email address """ # @ApiMember(Description="Current work location state") current_work_state: Optional[str] = None """ Current work location state """ # @ApiMember(Description="Current work location country") current_work_country: Optional[str] = None """ Current work location country """ # @ApiMember(Description="Destination work location state") destination_work_state: Optional[str] = None """ Destination work location state """ # @ApiMember(Description="Destination work location country") destination_work_country: Optional[str] = None """ Destination work location country """ # @ApiMember(Description="Preferred work location state") preferred_work_state: Optional[str] = None """ Preferred work location state """ # @ApiMember(Description="Preferred work location country") preferred_work_country: Optional[str] = None """ Preferred work location country """