Skip to content

Latest commit

 

History

History
43 lines (34 loc) · 2.24 KB

SurveyListDTO.md

File metadata and controls

43 lines (34 loc) · 2.24 KB

SurveyListDTO

Properties

Name Type Description Notes
survey_id int The Id of the Survey [optional]
survey_status_id int The Id of the Survey status [optional]
survey_start_date datetime The date when the survey has started [optional]
survey_end_date datetime The date when the survey has ended [optional]
survey_create_date datetime The date when the survey has been uploaded in the Data Bridges platform [optional]
survey_validation_report str The detailed report on the validation performed on the survey schema [optional]
survey_original_filename str The filename of the survey CSV file [optional]
xls_form_name str The name of the XLSForm used to collect data [optional]
base_xls_form_name str The name of the base XLSForm used to build the XLSForm [optional]
country_name str The name of the country where the survey has taken place [optional]
adm0_code int The internal code of the country where the survey has taken place [optional]
iso3_alpha3 str The ISO3 alpha code of the country where the survey has taken place [optional]
user_name str The name of the user that has uploaded the survey data [optional]
original_csv_file str The link to download the original CSV file [optional]
base_data str The link to the JSON data reshaped on the base XLSForm [optional]

Example

from data_bridges_client.models.survey_list_dto import SurveyListDTO

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

# convert the object into a dict
survey_list_dto_dict = survey_list_dto_instance.to_dict()
# create an instance of SurveyListDTO from a dict
survey_list_dto_from_dict = SurveyListDTO.from_dict(survey_list_dto_dict)

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