| Name | Type | Description | Notes |
|---|---|---|---|
| url | str | ||
| type | ResourceType | [optional] |
from wordlift_client.models.resource_request import ResourceRequest
# TODO update the JSON string below
json = "{}"
# create an instance of ResourceRequest from a JSON string
resource_request_instance = ResourceRequest.from_json(json)
# print the JSON string representation of the object
print(ResourceRequest.to_json())
# convert the object into a dict
resource_request_dict = resource_request_instance.to_dict()
# create an instance of ResourceRequest from a dict
resource_request_from_dict = ResourceRequest.from_dict(resource_request_dict)