Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1020 Bytes

ImpressionResponse.md

File metadata and controls

29 lines (21 loc) · 1020 Bytes

ImpressionResponse

Properties

Name Type Description Notes
impression Impression [optional]
errors Dict[str, str] [optional]

Example

from sparkfly_client.models.impression_response import ImpressionResponse

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

# convert the object into a dict
impression_response_dict = impression_response_instance.to_dict()
# create an instance of ImpressionResponse from a dict
impression_response_form_dict = impression_response.from_dict(impression_response_dict)

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