/* Options: Date: 2026-08-01 16:54:55 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://dmsshow.kyocerasolutions.cz //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(); } }