/* tslint:disable */ /* eslint-disable */ /** * branches * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Represents an address. */ export interface Address { /** * The city for the address. */ city?: string; /** * The country. */ country?: string; /** * The address encoded key, which is unique and generated. */ encodedKey?: string; /** * The index of this address in the list of addresses. */ indexInList?: number; /** * The GPS latitude of this address in signed degrees format (DDD.dddd) with 6 decimal positions, ranging from -90 to +90. */ latitude?: number; /** * The first line of the address. */ line1?: string; /** * The second line of the address. */ line2?: string; /** * The GPS longitude of this address in signed degrees format (DDD.dddd) with 6 decimal positions, ranging from -180 to +180. */ longitude?: number; /** * The address parent key indicating the object owning this address. For example: client, centre, or branch. */ parentKey?: string; /** * The post code. */ postcode?: string; /** * The region for the address. */ region?: string; }