(* Options: Date: 2026-07-16 21:56:39 Version: 8.30 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://initiation-test.sirva.com //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: ConsumerInitiation.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace Client_Initiations.ServiceModel open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] [] type ConsumerInitiation() = interface IPost /// ///First name of the consumer /// [] member val FirstName:String = null with get,set /// ///Last name of the consumer /// [] member val LastName:String = null with get,set /// ///Program name /// [] member val Program:String = null with get,set /// ///Company name /// [] member val CompanyName:String = null with get,set /// ///Mobile phone number /// [] member val MobileNumber:String = null with get,set /// ///Preferred email address /// [] member val PreferredEmail:String = null with get,set /// ///Current work location state /// [] member val CurrentWorkState:String = null with get,set /// ///Current work location country /// [] member val CurrentWorkCountry:String = null with get,set /// ///Destination work location state /// [] member val DestinationWorkState:String = null with get,set /// ///Destination work location country /// [] member val DestinationWorkCountry:String = null with get,set /// ///Preferred work location state /// [] member val PreferredWorkState:String = null with get,set /// ///Preferred work location country /// [] member val PreferredWorkCountry:String = null with get,set