export class AgencyData {
  static generateUserAgencyData(companyUuid: string, companyId: string) {
    const agencyUuid = 'd6d94cdf-d121-488a-b9e0-f8a63ba23a15';

    return {
      flightBookingFee: 0,
      paidRoadWarriorFee: 0,
      eliteTravelConciergeFee: 0,
      railOnlyFee: 0,
      oneWayFlightBookingFee: 0,
      railOnlyVipFee: 0,
      agency: {
        uuid: agencyUuid,
        name: 'TripActions',
        currency: 'USD',
        location: 'SJC',
        countryCode: 'US',
        tripActions: true,
        usagency: true
      },
      companyUuid: companyUuid,
      companyId: companyId
    };
  }
}
