Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.32 KB

File metadata and controls

36 lines (27 loc) · 1.32 KB

DataPullRequest

Properties

Name Type Description Notes
dataset str
mode str
type str
upload str [optional]
s3_upload DataPullRequestS3Upload [optional]
https_upload DataPullRequestHttpsUpload [optional]
csv_options DataPullRequestCsvOptions [optional]
skip_refreshing_materialized_views bool [optional]

Example

from cm_python_openapi_sdk.models.data_pull_request import DataPullRequest

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

# convert the object into a dict
data_pull_request_dict = data_pull_request_instance.to_dict()
# create an instance of DataPullRequest from a dict
data_pull_request_from_dict = DataPullRequest.from_dict(data_pull_request_dict)

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