Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.66 KB

ResourceCatalogCostDataMixin.md

File metadata and controls

37 lines (28 loc) · 1.66 KB

ResourceCatalogCostDataMixin

Resource Catalog Cost Data

Properties

Name Type Description Notes
id str The id of the resource catalog cost data.
resource_id str The id of the resource.
start_datetime datetime The start datetime.
end_datetime datetime The end datetime.
granularity OnelensModelsServiceInterfacesUtilitiesCommonsGranularityUnit The granularity.
unblended_cost float The unblended cost. [optional]
blended_cost float The blended cost. [optional]
net_unblended_cost float The net unblended cost. [optional]

Example

from onelens_backend_client.models.resource_catalog_cost_data_mixin import ResourceCatalogCostDataMixin

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

# convert the object into a dict
resource_catalog_cost_data_mixin_dict = resource_catalog_cost_data_mixin_instance.to_dict()
# create an instance of ResourceCatalogCostDataMixin from a dict
resource_catalog_cost_data_mixin_form_dict = resource_catalog_cost_data_mixin.from_dict(resource_catalog_cost_data_mixin_dict)

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