@@ -39,8 +39,8 @@ class Order(object):
3939 "production" : "bool" ,
4040 "state" : "str" ,
4141 "allocation_state" : "str" ,
42- "price_cents_usd" : "str " ,
43- "patch_fee_cents_usd" : "str " ,
42+ "price_cents_usd" : "int " ,
43+ "patch_fee_cents_usd" : "int " ,
4444 "allocations" : "list[Allocation]" ,
4545 "registry_url" : "str" ,
4646 "metadata" : "object" ,
@@ -295,7 +295,7 @@ def price_cents_usd(self):
295295 The total price in cents USD of the carbon offsets purchased through this order. # noqa: E501
296296
297297 :return: The price_cents_usd of this Order. # noqa: E501
298- :rtype: str
298+ :rtype: int
299299 """
300300 return self ._price_cents_usd
301301
@@ -306,7 +306,7 @@ def price_cents_usd(self, price_cents_usd):
306306 The total price in cents USD of the carbon offsets purchased through this order. # noqa: E501
307307
308308 :param price_cents_usd: The price_cents_usd of this Order. # noqa: E501
309- :type: str
309+ :type: int
310310 """
311311
312312 self ._price_cents_usd = price_cents_usd
@@ -318,7 +318,7 @@ def patch_fee_cents_usd(self):
318318 The Patch Fee in cents USD for this order. # noqa: E501
319319
320320 :return: The patch_fee_cents_usd of this Order. # noqa: E501
321- :rtype: str
321+ :rtype: int
322322 """
323323 return self ._patch_fee_cents_usd
324324
@@ -329,7 +329,7 @@ def patch_fee_cents_usd(self, patch_fee_cents_usd):
329329 The Patch Fee in cents USD for this order. # noqa: E501
330330
331331 :param patch_fee_cents_usd: The patch_fee_cents_usd of this Order. # noqa: E501
332- :type: str
332+ :type: int
333333 """
334334
335335 self ._patch_fee_cents_usd = patch_fee_cents_usd
0 commit comments