Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.2 KB

File metadata and controls

31 lines (22 loc) · 1.2 KB

CreateTechnicalGeoReportsRequest

Properties

Name Type Description Notes
project_id int
url str
country_code str Defaults to the project country [optional]

Example

from llmpulse.models.create_technical_geo_reports_request import CreateTechnicalGeoReportsRequest

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

# convert the object into a dict
create_technical_geo_reports_request_dict = create_technical_geo_reports_request_instance.to_dict()
# create an instance of CreateTechnicalGeoReportsRequest from a dict
create_technical_geo_reports_request_from_dict = CreateTechnicalGeoReportsRequest.from_dict(create_technical_geo_reports_request_dict)

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