Skip to content
This repository was archived by the owner on Feb 21, 2025. It is now read-only.

Latest commit

 

History

History
73 lines (65 loc) · 2.81 KB

File metadata and controls

73 lines (65 loc) · 2.81 KB

ExportFeed

Properties

Name Type Description Notes
id str [optional]
deleted bool [optional]
name str
code str [optional]
description str [optional]
limit int
separate_job bool [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]
type str
language str [optional]
is_active bool [optional]
file_type str
is_file_header_row bool [optional]
csv_field_delimiter str [optional]
csv_text_qualifier str [optional]
entity str [optional]
convert_collection_to_string bool [optional]
delimiter str [optional]
replace_attribute_values bool [optional]
convert_relations_to_string bool [optional]
field_delimiter_for_relation str [optional]
empty_value str [optional]
null_value str [optional]
mark_for_no_relation str [optional]
decimal_mark str [optional]
thousand_separator str [optional]
data object [optional]
sort_order_field str [optional]
sort_order_direction str [optional]
template str [optional]
last_time str [optional]
export_by_max_depth str [optional]
assigned_accounts_ids List[str] [optional]
assigned_accounts_names object [optional]
last_status str [optional]

Example

from clientapi_atrocore.models.export_feed import ExportFeed

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

# convert the object into a dict
export_feed_dict = export_feed_instance.to_dict()
# create an instance of ExportFeed from a dict
export_feed_form_dict = export_feed.from_dict(export_feed_dict)

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