Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 979 Bytes

File metadata and controls

30 lines (21 loc) · 979 Bytes

PresignedPost

Properties

Name Type Description Notes
url str The URL that should be used as the action of the form.
fields PresignedPostFields

Example

from wallet.models.presigned_post import PresignedPost

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

# convert the object into a dict
presigned_post_dict = presigned_post_instance.to_dict()
# create an instance of PresignedPost from a dict
presigned_post_form_dict = presigned_post.from_dict(presigned_post_dict)

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