Update api version

This commit is contained in:
Guilherme Werner 2026-04-03 13:19:35 -03:00
parent 5071fdde1f
commit 26dbeb6867
56 changed files with 456 additions and 857 deletions

View file

@ -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'],
};
}