Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.11 KB

File metadata and controls

31 lines (22 loc) · 1.11 KB

BulkPointQueryJobRequest

Properties

Name Type Description Notes
type str
project_id str
content BulkPointQueryRequest

Example

from cm_python_openapi_sdk.models.bulk_point_query_job_request import BulkPointQueryJobRequest

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

# convert the object into a dict
bulk_point_query_job_request_dict = bulk_point_query_job_request_instance.to_dict()
# create an instance of BulkPointQueryJobRequest from a dict
bulk_point_query_job_request_from_dict = BulkPointQueryJobRequest.from_dict(bulk_point_query_job_request_dict)

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