/** * Encloses communication location details * @export * @class CommunicationLocationResponse */ export declare class CommunicationLocationResponse { /** * @type {string} * @memberof CommunicationLocationResponse */ country?: string | undefined; /** * @type {string} * @memberof CommunicationLocationResponse */ state?: string | undefined; /** * @type {string} * @memberof CommunicationLocationResponse */ county?: string | undefined; /** * @type {string} * @memberof CommunicationLocationResponse */ city?: string | undefined; }