Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1.07 KB

OfferSimplifiedResponse.md

File metadata and controls

29 lines (21 loc) · 1.07 KB

OfferSimplifiedResponse

Properties

Name Type Description Notes
offer OfferSimplified [optional]
errors Dict[str, str] [optional]

Example

from sparkfly_client.models.offer_simplified_response import OfferSimplifiedResponse

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

# convert the object into a dict
offer_simplified_response_dict = offer_simplified_response_instance.to_dict()
# create an instance of OfferSimplifiedResponse from a dict
offer_simplified_response_form_dict = offer_simplified_response.from_dict(offer_simplified_response_dict)

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