Upsert Resource Catalog Cost Data Request
| Name | Type | Description | Notes |
|---|---|---|---|
| resource_catalog_cost_data | List[ResourceCatalogCostDataMixin] | The resource cost data. | |
| tenant_id | str | The id of the tenant. |
from onelens_backend_client.models.upsert_resource_catalog_cost_data_request import UpsertResourceCatalogCostDataRequest
# TODO update the JSON string below
json = "{}"
# create an instance of UpsertResourceCatalogCostDataRequest from a JSON string
upsert_resource_catalog_cost_data_request_instance = UpsertResourceCatalogCostDataRequest.from_json(json)
# print the JSON string representation of the object
print(UpsertResourceCatalogCostDataRequest.to_json())
# convert the object into a dict
upsert_resource_catalog_cost_data_request_dict = upsert_resource_catalog_cost_data_request_instance.to_dict()
# create an instance of UpsertResourceCatalogCostDataRequest from a dict
upsert_resource_catalog_cost_data_request_form_dict = upsert_resource_catalog_cost_data_request.from_dict(upsert_resource_catalog_cost_data_request_dict)