Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.54 KB

File metadata and controls

31 lines (22 loc) · 1.54 KB

ImageGenerationBillingHistoryDetailsResponseSchema

Properties

Name Type Description Notes
billing_history_image_generation_details BillingHistoryImageGenerationDetails [optional]
message str [optional]
status bool [optional]

Example

from hyperstack.models.image_generation_billing_history_details_response_schema import ImageGenerationBillingHistoryDetailsResponseSchema

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

# convert the object into a dict
image_generation_billing_history_details_response_schema_dict = image_generation_billing_history_details_response_schema_instance.to_dict()
# create an instance of ImageGenerationBillingHistoryDetailsResponseSchema from a dict
image_generation_billing_history_details_response_schema_from_dict = ImageGenerationBillingHistoryDetailsResponseSchema.from_dict(image_generation_billing_history_details_response_schema_dict)

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