/** * Pipedrive API v2 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Location of the activity * @export * @interface AddActivityRequestLocation */ export interface AddActivityRequestLocation { /** * The full address of the activity * @type {string} */ 'value'?: string; /** * Country of the activity * @type {string} */ 'country'?: string; /** * Admin area level 1 (e.g. state) of the activity * @type {string} */ 'admin_area_level_1'?: string; /** * Admin area level 2 (e.g. county) of the activity * @type {string} */ 'admin_area_level_2'?: string; /** * Locality (e.g. city) of the activity * @type {string} */ 'locality'?: string; /** * Sublocality (e.g. neighborhood) of the activity * @type {string} */ 'sublocality'?: string; /** * Route (e.g. street) of the activity * @type {string} */ 'route'?: string; /** * Street number of the activity * @type {string} */ 'street_number'?: string; /** * Subpremise (e.g. apartment/suite number) of the activity * @type {string} */ 'subpremise'?: string; /** * Postal code of the activity * @type {string} */ 'postal_code'?: string; }