| Name |
Type |
Description |
Notes |
| csv_id |
str |
|
[optional] |
| import_action |
str |
|
[optional] |
| template_type |
Assetsv3TemplateType |
|
[optional] [default to Assetsv3TemplateType.DATABASE] |
from ibm_gdsc_sdk_saas.models.assetsv3_import_csv_request import Assetsv3ImportCSVRequest
# TODO update the JSON string below
json = "{}"
# create an instance of Assetsv3ImportCSVRequest from a JSON string
assetsv3_import_csv_request_instance = Assetsv3ImportCSVRequest.from_json(json)
# print the JSON string representation of the object
print(Assetsv3ImportCSVRequest.to_json())
# convert the object into a dict
assetsv3_import_csv_request_dict = assetsv3_import_csv_request_instance.to_dict()
# create an instance of Assetsv3ImportCSVRequest from a dict
assetsv3_import_csv_request_from_dict = Assetsv3ImportCSVRequest.from_dict(assetsv3_import_csv_request_dict)
[Back to Model list] [Back to API list] [Back to README]