| Name | Type | Description | Notes |
|---|---|---|---|
| data | List[CorePriceSchema] |
from bsg_api.models.get_internal_core_prices200_response import GetInternalCorePrices200Response
# TODO update the JSON string below
json = "{}"
# create an instance of GetInternalCorePrices200Response from a JSON string
get_internal_core_prices200_response_instance = GetInternalCorePrices200Response.from_json(json)
# print the JSON string representation of the object
print(GetInternalCorePrices200Response.to_json())
# convert the object into a dict
get_internal_core_prices200_response_dict = get_internal_core_prices200_response_instance.to_dict()
# create an instance of GetInternalCorePrices200Response from a dict
get_internal_core_prices200_response_from_dict = GetInternalCorePrices200Response.from_dict(get_internal_core_prices200_response_dict)