aps-data-api
Version:
package for data extraction from APS company for omnimetic project
18 lines (15 loc) • 405 B
text/typescript
import { Address, LooseObject } from '../../typings';
export class UtilityServiceAccountResponse implements LooseObject {
id: string;
address: Address;
meterNumber: string;
legalNames: string[];
constructor(json?: any) {
if (json) {
this.id = json.id;
this.address = json.address;
this.meterNumber = json.meterNumber;
this.legalNames = json.legalNames;
}
}
}