@getopenpay/client
Version:
OpenPay API TypeScript SDK
39 lines (38 loc) • 1.34 kB
TypeScript
/**
* OpenPay API
* super charge your subscription management.
*
* The version of the OpenAPI document: 1.2.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/**
*
* @export
* @interface SelectedPriceQuantity
*/
export interface SelectedPriceQuantity {
/**
* Unique Identifier of the price.
* @type {string}
* @memberof SelectedPriceQuantity
*/
priceId: string;
/**
* Quantity of the product selected for the subscription.This field is ignored for metered prices
* @type {number}
* @memberof SelectedPriceQuantity
*/
quantity: number;
}
/**
* Check if a given object implements the SelectedPriceQuantity interface.
*/
export declare function instanceOfSelectedPriceQuantity(value: object): value is SelectedPriceQuantity;
export declare function SelectedPriceQuantityFromJSON(json: any): SelectedPriceQuantity;
export declare function SelectedPriceQuantityFromJSONTyped(json: any, ignoreDiscriminator: boolean): SelectedPriceQuantity;
export declare function SelectedPriceQuantityToJSON(json: any): SelectedPriceQuantity;
export declare function SelectedPriceQuantityToJSONTyped(value?: SelectedPriceQuantity | null, ignoreDiscriminator?: boolean): any;