Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.02 KB

File metadata and controls

30 lines (21 loc) · 1.02 KB

PresignedPost

Properties

Name Type Description Notes
url object The URL that should be used as the action of the form.
fields PresignedPostFields The fields that must be included as hidden inputs on the form.

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]