/** @description The address information corresponding to a specific relay point */
export classRelayPointAddress{
relay_point_id!: string;
company_name?: string;
address_lines!: string[];
city_locality!: string;
state_province!: string;
postal_code!: string;
country_code!: string;
}