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.

30 lines
877 B

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