data-and-reporting-sdk
Version:
Data And Reporting product consists of API's which provides details of transaction and invoice informations about shell cards. The Shell Card Transaction and Invoice API is REST-based and employs Basic authentication in Version 1 and Oauth authentication
23 lines • 962 B
JavaScript
/**
* Shell Data & Reporting APIsLib
*
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
*/
import { array, lazy, object, optional } from '../schema.js';
import { bonusConfigurationSchema, } from './bonusConfiguration.js';
import { pricingCurrentVolumeSchema, } from './pricingCurrentVolume.js';
import { pricingHistorySchema } from './pricingHistory.js';
import { warningSchema } from './warning.js';
export const volumeBasedPricingResponseSchema = object({
configuration: [
'Configuration',
optional(array(lazy(() => bonusConfigurationSchema))),
],
currentPeriodConsumption: [
'CurrentPeriodConsumption',
optional(array(lazy(() => pricingCurrentVolumeSchema))),
],
history: ['History', optional(array(lazy(() => pricingHistorySchema)))],
warnings: ['Warnings', optional(array(lazy(() => warningSchema)))],
});
//# sourceMappingURL=volumeBasedPricingResponse.js.map