mirror of
https://github.com/Tribufu/TribufuJS
synced 2026-08-09 21:01:06 +00:00
Update api version
This commit is contained in:
parent
5071fdde1f
commit
26dbeb6867
56 changed files with 456 additions and 857 deletions
|
|
@ -4,7 +4,7 @@
|
|||
* Tribufu API
|
||||
* API to access Tribufu services.
|
||||
*
|
||||
* The version of the OpenAPI document: 1.3.0
|
||||
* The version of the OpenAPI document: 1.4.2
|
||||
* Contact: contact@tribufu.com
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
|
|
@ -30,7 +30,7 @@ export interface ProductPrice {
|
|||
* @type {number}
|
||||
* @memberof ProductPrice
|
||||
*/
|
||||
amount?: number;
|
||||
price?: number;
|
||||
/**
|
||||
*
|
||||
* @type {number}
|
||||
|
|
@ -58,7 +58,7 @@ export function ProductPriceFromJSONTyped(json: any, ignoreDiscriminator: boolea
|
|||
return {
|
||||
|
||||
'currency': json['currency'],
|
||||
'amount': json['amount'] == null ? undefined : json['amount'],
|
||||
'price': json['price'] == null ? undefined : json['price'],
|
||||
'renewal': json['renewal'] == null ? undefined : json['renewal'],
|
||||
};
|
||||
}
|
||||
|
|
@ -75,7 +75,7 @@ export function ProductPriceToJSONTyped(value?: ProductPrice | null, ignoreDiscr
|
|||
return {
|
||||
|
||||
'currency': value['currency'],
|
||||
'amount': value['amount'],
|
||||
'price': value['price'],
|
||||
'renewal': value['renewal'],
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue