/* Options: Date: 2026-04-04 01:02:50 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://pfapi.pstpf.com.au/api //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: UpdateContactGroupOrder.* //ExcludeTypes: //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.*; public class dtos { /** * 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") public static class UpdateContactGroupOrder implements IReturn { /** * Connection of contact to update index in the group */ @ApiMember(Description="Connection of contact to update index in the group", Name="ContactGroupConnectionId") public UUID ContactGroupConnectionId = null; /** * The index of the contact in the group */ @ApiMember(Description="The index of the contact in the group", Name="Index") public Integer Index = null; public UUID getContactGroupConnectionId() { return ContactGroupConnectionId; } public UpdateContactGroupOrder setContactGroupConnectionId(UUID value) { this.ContactGroupConnectionId = value; return this; } public Integer getIndex() { return Index; } public UpdateContactGroupOrder setIndex(Integer value) { this.Index = value; return this; } private static Object responseType = StringResponse.class; public Object getResponseType() { return responseType; } } public static class StringResponse { public String Result = null; public String getResult() { return Result; } public StringResponse setResult(String value) { this.Result = value; return this; } } }