Batch Description
Name | Type | Description | Notes |
---|---|---|---|
numeric_error_columns | List[object] | [optional] | |
date_error_columns | List[object] | [optional] | |
space_id | int | [optional] | |
from_date | datetime | [optional] | |
to_date | datetime | [optional] | |
data_file_path | str | [optional] | |
on_refresh_action | str | [optional] |
from openapi_client.models.batch_info_schema_description import BatchInfoSchemaDescription
# TODO update the JSON string below
json = "{}"
# create an instance of BatchInfoSchemaDescription from a JSON string
batch_info_schema_description_instance = BatchInfoSchemaDescription.from_json(json)
# print the JSON string representation of the object
print(BatchInfoSchemaDescription.to_json())
# convert the object into a dict
batch_info_schema_description_dict = batch_info_schema_description_instance.to_dict()
# create an instance of BatchInfoSchemaDescription from a dict
batch_info_schema_description_from_dict = BatchInfoSchemaDescription.from_dict(batch_info_schema_description_dict)