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.
|
|
# FileKey
## Properties
Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **count** | **object** | | [optional] **fid** | **object** | | [optional] **url** | **object** | | [optional]
## Example
```python from openapi_client.models.file_key import FileKey
# TODO update the JSON string below
json = "{}" # create an instance of FileKey from a JSON string
file_key_instance = FileKey.from_json(json) # print the JSON string representation of the object
print FileKey.to_json()
# convert the object into a dict
file_key_dict = file_key_instance.to_dict() # create an instance of FileKey from a dict
file_key_form_dict = file_key.from_dict(file_key_dict) ``` [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|