/* Options: Date: 2026-04-04 04:53:57 SwiftVersion: 6.0 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://pfapi.pstpf.com.au/api //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True //MakePropertiesOptional: True IncludeTypes: UpdateContactGroupOrder.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack /** * Update the order of contacts in the specified contact group */ // @Route("/contactgroups/updatecontactgrouporder") // @Api(Description="Update the order of contacts in the specified contact group") public class UpdateContactGroupOrder : IReturn, Codable { public typealias Return = StringResponse /** * Connection of contact to update index in the group */ // @ApiMember(Description="Connection of contact to update index in the group", Name="ContactGroupConnectionId") public var contactGroupConnectionId:String? /** * The index of the contact in the group */ // @ApiMember(Description="The index of the contact in the group", Name="Index") public var index:Int? required public init(){} } public class StringResponse : Codable { public var result:String? required public init(){} }