Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 960 Bytes

OfferInputRequest.md

File metadata and controls

28 lines (20 loc) · 960 Bytes

OfferInputRequest

Properties

Name Type Description Notes
offer OfferInput [optional]

Example

from sparkfly_client.models.offer_input_request import OfferInputRequest

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

# convert the object into a dict
offer_input_request_dict = offer_input_request_instance.to_dict()
# create an instance of OfferInputRequest from a dict
offer_input_request_form_dict = offer_input_request.from_dict(offer_input_request_dict)

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