/** * Email Service API * Email Service * * OpenAPI spec version: 0.0.1-SNAPSHOT * * * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen.git * Do not edit the class manually. */ export interface RateDetails { /** * Length of rental periods (day, week, month, etc) */ lengthOfRentalPeriods?: string; /** * Number of rental periods */ numberOfRentalPeriods?: string; /** * Rental period Amount */ rentalPeriodAmount?: string; /** * Rental rate currency */ rentalRateCurrency?: string; /** * Total rental rate amount */ totalRentalRateAmount?: string; }