/* Options: Date: 2026-04-04 04:53:01 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://pfapi.pstpf.com.au/api //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: UpdateContactGroupOrder.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class StringResponse { public Result: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } /** @description 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") export class UpdateContactGroupOrder implements IReturn { /** @description Connection of contact to update index in the group */ // @ApiMember(Description="Connection of contact to update index in the group", Name="ContactGroupConnectionId") public ContactGroupConnectionId: string; /** @description The index of the contact in the group */ // @ApiMember(Description="The index of the contact in the group", Name="Index") public Index: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'UpdateContactGroupOrder'; } public getMethod() { return 'POST'; } public createResponse() { return new StringResponse(); } }