/* Options: Date: 2025-12-06 12:36:01 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://sfgboxapi.dev.scadsoftware.com //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: DistributedBoxesViewLookup.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } // @Route("/distributed_boxes_view", "GET") export class DistributedBoxesViewLookup implements IReturn { public id: number; public tenantsId: number; public appUserId: number; public authAppUserId: number; public deploymentDate: string; public numberBoxes: number; public recipientType: string; public foodGardensId: number; public otherDescription: string; public latitude: number; public longitude: number; public phoneNumber: string; public displayName: string; public email: string; public applicationDate: string; public isZoneMain: boolean; public isDisabled: boolean; public gender: string; public ethnicGroup: string; public age: number; public approvalDate: string; public approved: boolean; public authorizedBy: string; public mediaPath: string; public name: string; public description: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'DistributedBoxesViewLookup'; } public getMethod() { return 'GET'; } public createResponse() { return new Array(); } }