/* Options: Date: 2026-01-27 18:53:46 Version: 8.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://buildmax.org //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetJsonPicklistItems.* //ExcludeTypes: //DefaultImports: */ export class JsonDto { public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class JsonPicklistItemsResponse extends JsonDto { public Guid: string; public Items: JsonPicklistItem[]; public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } } export class GetJsonPicklistItems extends JsonDto implements IReturn { public TemplateGuid: string; public Guid: string; public Answers: { [index: string]: string; }; public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } public getTypeName() { return 'GetJsonPicklistItems'; } public getMethod() { return 'GET'; } public createResponse() { return new JsonPicklistItemsResponse(); } }