Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.2 KB

File metadata and controls

31 lines (22 loc) · 1.2 KB

BulkPointQueryRequest

Properties

Name Type Description Notes
enable_billing bool [optional]
points List[BulkPointQueryRequestPointsInner]
point_queries List[BulkPointQueryRequestPointQueriesInner]

Example

from cm_python_openapi_sdk.models.bulk_point_query_request import BulkPointQueryRequest

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

# convert the object into a dict
bulk_point_query_request_dict = bulk_point_query_request_instance.to_dict()
# create an instance of BulkPointQueryRequest from a dict
bulk_point_query_request_from_dict = BulkPointQueryRequest.from_dict(bulk_point_query_request_dict)

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