Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 955 Bytes

File metadata and controls

30 lines (21 loc) · 955 Bytes

ResourceRequest

Properties

Name Type Description Notes
url str
type ResourceType [optional]

Example

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)

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