Name |
Type |
Description |
Notes |
id |
str |
|
[optional] |
customer_id |
str |
|
[optional] |
source |
str |
|
[optional] |
description |
str |
|
[optional] |
type |
str |
|
[optional] |
amount |
str |
|
[optional] |
metadata |
object |
|
[optional] |
created_at |
datetime |
|
[optional] |
updated_at |
datetime |
|
[optional] |
from frontier_api.models.v1beta1_usage import V1beta1Usage
# TODO update the JSON string below
json = "{}"
# create an instance of V1beta1Usage from a JSON string
v1beta1_usage_instance = V1beta1Usage.from_json(json)
# print the JSON string representation of the object
print V1beta1Usage.to_json()
# convert the object into a dict
v1beta1_usage_dict = v1beta1_usage_instance.to_dict()
# create an instance of V1beta1Usage from a dict
v1beta1_usage_form_dict = v1beta1_usage.from_dict(v1beta1_usage_dict)
[Back to Model list] [Back to API list] [Back to README]