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
51 lines • 1.49 kB
TypeScript
/**
* Shell Data & Reporting APIsLib
*
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
*/
import { Schema } from '../schema.js';
export interface Tier {
/**
* The price list if reference price is list price.
* Only used when the Price Rule category is set to.
* ‘Tiered Pricing’.
*/
tierPriceListId?: number | null;
/** Price list description of the tier. */
priceListDescription?: string | null;
/**
* Minimum tier volume
* E.g., 500
*/
tierMin?: number | null;
/**
* Maximum tier volume
* E.g., 1000
*/
tierMax?: number | null;
/** Pricing group name of tier */
tieredPricingGroupName?: string | null;
/**
* Tiered pricing group period.
* Possible Values
* 1. Monthly
* 2. Quarterly
* 3. Semi Annually
* 4. Annual
*/
tieredPricingGroupPeriod?: string | null;
/** Discount value to be applied to the List price or pump price. */
discountValue?: number | null;
/**
* Price per unit after discount
* Note: This field will not contain any value for discounts on retail prices.
*/
pricePerUnit?: number | null;
/**
* Price per unit (List Price)
* Note: This field will not contain any value for discounts on retail prices.
*/
pricePerUnitAfterDiscount?: number | null;
}
export declare const tierSchema: Schema<Tier>;
//# sourceMappingURL=tier.d.ts.map