/* Options: Date: 2024-12-15 20:25:06 Version: 6.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://staging-api.billiecart.com.au //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: PromoteOrganisationOwnerRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/organisations/{Id}/owners", Verbs="POST") open class PromoteOrganisationOwnerRequest : PostOperationUnTenanted(), IReturn { var id:String? = null var userAccountId:String? = null companion object { private val responseType = PromoteOrganisationOwnerResponse::class.java } override fun getResponseType(): Any? = PromoteOrganisationOwnerRequest.responseType } open class PromoteOrganisationOwnerResponse { var responseStatus:ResponseStatus? = null var organisation:Organisation? = null } open class PostOperationUnTenanted : IPost { } open class Organisation : IIdentifiableResource { var displayName:String? = null var owners:ArrayList = ArrayList() var isDefault:Boolean? = null var id:String? = null } open interface IIdentifiableResource { var id:String? }