/* Options: Date: 2026-04-04 01:04:18 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://pfapi.pstpf.com.au/api //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: AddUserProfile.* //ExcludeTypes: //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.* import java.util.* import java.io.InputStream import net.servicestack.client.* /** * Add a Users Profile information' */ @Route(Path="/profiles", Verbs="POST") @Api(Description="Add a Users Profile information'") open class AddUserProfile : IReturn { open var UserIds:ArrayList? = null open var ContactIds:ArrayList? = null open var ProfileToShareId:UUID? = null companion object { private val responseType = AddUserProfileResponse::class.java } override fun getResponseType(): Any? = AddUserProfile.responseType } open class AddUserProfileResponse { open var Errors:ArrayList? = null /** * Guid representing the object that is the User Profile Id in Eros. */ @ApiMember(DataType="Guid", Description="Guid representing the object that is the User Profile Id in Eros.", Name="UserProfileId", ParameterType="query") open var ProfileToShareId:UUID? = null /** * Service Stack Response Status. */ @ApiMember(DataType="ResponseStatus", Description="Service Stack Response Status.", Name="ResponseStatus", ParameterType="query") open var ResponseStatus:ResponseStatus? = null }