/* Options: Date: 2026-04-04 02:54:42 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: GetAutomationTypesByObjectType.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class ListItemModel { public ListItemId: string; public Name: string; public Description: string; public ShortName: string; public IsDefault: boolean; public Order: number; public ListItemTrafficLightId: string; public PrimaryListItemImageId: string; public PrimaryListItemImageUrl: string; public PrimaryImageThumbnailUrl: string; public OwnerContactId: string; public RecordStatus: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @DataContract export class ResponseStatus { // @DataMember(Order=1) public ErrorCode: string; // @DataMember(Order=2) public Message: string; // @DataMember(Order=3) public StackTrace: string; // @DataMember(Order=4) public Errors: ResponseError[]; // @DataMember(Order=5) public Meta: { [index:string]: string; }; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @ApiResponse(Description="A list of automation types assignable to a particular object type") export class GetAutomationTypesByObjectTypeResponse { /** @description List of applicable automation types. */ // @ApiMember(Description="List of applicable automation types.") public AutomationTypes: ListItemModel[]; public ResponseStatus: ResponseStatus; public constructor(init?: Partial) { (Object as any).assign(this, init); } } /** @description Get automation types available for the specified object type (rmsTableCtxId) */ // @Route("/automation/availabletypes/{RmsTableCtxId}", "GET") // @Api(Description="Get automation types available for the specified object type (rmsTableCtxId)") export class GetAutomationTypesByObjectType implements IReturn { /** @description RmsTableCtx Id to filter available automation types by */ // @ApiMember(Description="RmsTableCtx Id to filter available automation types by", ParameterType="path") public RmsTableCtxId: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GetAutomationTypesByObjectType'; } public getMethod() { return 'GET'; } public createResponse() { return new GetAutomationTypesByObjectTypeResponse(); } }