/* Options: Date: 2026-04-04 01:20:14 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: UpdateContactGroupOrder.* //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.* /** * Update the order of contacts in the specified contact group */ @Route(Path="/contactgroups/updatecontactgrouporder") @Api(Description="Update the order of contacts in the specified contact group") open class UpdateContactGroupOrder : IReturn { /** * Connection of contact to update index in the group */ @ApiMember(Description="Connection of contact to update index in the group", Name="ContactGroupConnectionId") open var ContactGroupConnectionId:UUID? = null /** * The index of the contact in the group */ @ApiMember(Description="The index of the contact in the group", Name="Index") open var Index:Int? = null companion object { private val responseType = StringResponse::class.java } override fun getResponseType(): Any? = UpdateContactGroupOrder.responseType } open class StringResponse { open var Result:String? = null }