import { ServicePointAddress } from '../addresses/service-point-address';

/** @description The address information corresponding to a specific service point */
export class ServicePointResponseAddress extends ServicePointAddress {
  /** @description Description of the location */
  description?: string;
}
