You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
850 B

2 years ago
  1. # Location
  2. ## Properties
  3. Name | Type | Description | Notes
  4. ------------ | ------------- | ------------- | -------------
  5. **public_url** | **object** | | [optional]
  6. **url** | **object** | | [optional]
  7. ## Example
  8. ```python
  9. from openapi_client.models.location import Location
  10. # TODO update the JSON string below
  11. json = "{}"
  12. # create an instance of Location from a JSON string
  13. location_instance = Location.from_json(json)
  14. # print the JSON string representation of the object
  15. print Location.to_json()
  16. # convert the object into a dict
  17. location_dict = location_instance.to_dict()
  18. # create an instance of Location from a dict
  19. location_form_dict = location.from_dict(location_dict)
  20. ```
  21. [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)