/* Options: Date: 2025-05-04 20:24:43 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: NewAddress.* //ExcludeTypes: //DefaultImports: */ export class NodeParameterMap { [key:string] : NodeParameter; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export interface IReturn { createResponse(): T; } export class AddressInfo { public id: string; public friendlyName: string; public emergencyEnabled: boolean; public customerName: string; public street: string; public city: string; public region: string; public postalCode: string; public isoCountry: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } /** @description Create a new business address to be used with e911 */ // @Route("/addresses", "POST") // @Api(Description="Create a new business address to be used with e911") export class NewAddress implements IReturn { public accountId: string; public friendlyName: string; public emergencyEnabled: boolean; public customerName: string; public street: string; public city: string; public region: string; public postalCode: string; public isoCountry: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'NewAddress'; } public getMethod() { return 'POST'; } public createResponse() { return new AddressInfo(); } }