/* Options: Date: 2025-09-03 18:57:23 Version: 6.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://foundrystage-api-app.azurewebsites.net //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetProfileRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/profile/{Id}", Verbs="GET") open class GetProfileRequest : GetOperationUnTenanted(), IReturn { var id:String? = null companion object { private val responseType = GetProfileResponse::class.java } override fun getResponseType(): Any? = GetProfileRequest.responseType } open class GetProfileResponse { var responseStatus:ResponseStatus? = null var profile:Profile? = null } open class GetOperationUnTenanted : IHasGetOptions, IGet { var embed:String? = null } open interface IHasGetOptions { var embed:String? } open class Profile : ProfileBasic() { var defaultOrganisationId:String? = null } open interface IIdentifiableResource { var id:String? } open class PersonName { var firstName:String? = null var lastName:String? = null } open class ProfileBasic : IIdentifiableResource { var name:PersonName? = null var displayName:String? = null var emailAddress:String? = null var phoneNumber:String? = null var timezone:String? = null var id:String? = null }