/* tslint:disable */ /* eslint-disable */ /** * configuration/branches.yaml * 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 AddressDetails { /** * The city for this address. */ city?: string; /** * The country that is part of the address. */ country?: string; /** * The first line of the address. */ line1?: string; /** * The second line of the address. */ line2?: string; /** * The post code that is part of the address. */ postcode?: string; /** * The region that is part of the address. */ region?: string; }