import { BaseRequest } from './base-request';

/** @description Basic structure for a request to get relay points */
export class GetRelayPointsRequest extends BaseRequest {
  service_code!: string;
  postal_code!: string;
  country_code!: string;
  city_locality?: string;
}
