Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1.18 KB

File metadata and controls

29 lines (21 loc) · 1.18 KB

StacCollectionsPostRequest

Properties

Name Type Description Notes
stac_instance_id str instance id where the collection will be stored [optional]
stac_url str url where the collection is located [optional]

Example

from actinia_openapi_python_client.models.stac_collections_post_request import StacCollectionsPostRequest

# TODO update the JSON string below
json = "{}"
# create an instance of StacCollectionsPostRequest from a JSON string
stac_collections_post_request_instance = StacCollectionsPostRequest.from_json(json)
# print the JSON string representation of the object
print StacCollectionsPostRequest.to_json()

# convert the object into a dict
stac_collections_post_request_dict = stac_collections_post_request_instance.to_dict()
# create an instance of StacCollectionsPostRequest from a dict
stac_collections_post_request_form_dict = stac_collections_post_request.from_dict(stac_collections_post_request_dict)

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