Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.16 KB

File metadata and controls

31 lines (22 loc) · 1.16 KB

GetAIModel200ResponsePricing

Properties

Name Type Description Notes
input_per_m_token float [optional]
output_per_m_token float [optional]
currency str [optional]

Example

from quantcdn.models.get_ai_model200_response_pricing import GetAIModel200ResponsePricing

# TODO update the JSON string below
json = "{}"
# create an instance of GetAIModel200ResponsePricing from a JSON string
get_ai_model200_response_pricing_instance = GetAIModel200ResponsePricing.from_json(json)
# print the JSON string representation of the object
print(GetAIModel200ResponsePricing.to_json())

# convert the object into a dict
get_ai_model200_response_pricing_dict = get_ai_model200_response_pricing_instance.to_dict()
# create an instance of GetAIModel200ResponsePricing from a dict
get_ai_model200_response_pricing_from_dict = GetAIModel200ResponsePricing.from_dict(get_ai_model200_response_pricing_dict)

[Back to Model list] [Back to API list] [Back to README]