| Name |
Type |
Description |
Notes |
| id |
str |
|
[optional] |
| deleted |
bool |
|
[optional] |
| name |
str |
|
|
| code |
str |
|
[optional] |
| description |
str |
|
[optional] |
| max_per_job |
int |
|
[optional] |
| is_active |
bool |
|
[optional] |
| repeat_processing |
str |
|
|
| type |
str |
|
|
| data |
object |
|
[optional] |
| file_id |
str |
|
[optional] |
| file_name |
str |
|
[optional] |
| sheet |
int |
|
[optional] |
| file_field_delimiter |
str |
|
[optional] |
| format |
str |
|
[optional] |
| file_text_qualifier |
str |
|
[optional] |
| file_data_action |
str |
|
[optional] |
| is_file_header_row |
bool |
|
[optional] |
| decimal_mark |
str |
|
|
| thousand_separator |
str |
|
[optional] |
| adapter |
str |
|
[optional] |
| created_at |
str |
|
[optional] |
| modified_at |
str |
|
[optional] |
| created_by_id |
str |
|
[optional] |
| created_by_name |
str |
|
[optional] |
| modified_by_id |
str |
|
[optional] |
| modified_by_name |
str |
|
[optional] |
| owner_user_id |
str |
|
[optional] |
| owner_user_name |
str |
|
[optional] |
| assigned_user_id |
str |
|
[optional] |
| assigned_user_name |
str |
|
[optional] |
| teams_ids |
List[str] |
|
[optional] |
| teams_names |
object |
|
[optional] |
| entity |
str |
|
|
| excluded_nodes |
List[str] |
|
[optional] |
| kept_string_nodes |
List[str] |
|
[optional] |
| delimiter |
str |
|
|
| field_delimiter_for_relation |
str |
|
|
| empty_value |
str |
|
[optional] |
| null_value |
str |
|
[optional] |
| mark_for_no_relation |
str |
|
[optional] |
| source_fields |
List[str] |
|
[optional] |
| connection_id |
str |
|
[optional] |
| connection_name |
str |
|
[optional] |
| last_time |
str |
|
[optional] |
| assigned_accounts_ids |
List[str] |
|
[optional] |
| assigned_accounts_names |
object |
|
[optional] |
| last_status |
str |
|
[optional] |
from clientapi_atrocore.models.import_feed import ImportFeed
# TODO update the JSON string below
json = "{}"
# create an instance of ImportFeed from a JSON string
import_feed_instance = ImportFeed.from_json(json)
# print the JSON string representation of the object
print ImportFeed.to_json()
# convert the object into a dict
import_feed_dict = import_feed_instance.to_dict()
# create an instance of ImportFeed from a dict
import_feed_form_dict = import_feed.from_dict(import_feed_dict)
[Back to Model list] [Back to API list] [Back to README]