Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.23 KB

File metadata and controls

31 lines (22 loc) · 1.23 KB

QuoteSearchResponseQuotesInnerLinks

Properties

Name Type Description Notes
topic str [optional]
href str [optional]
type str [optional]

Example

from xi.sdk.resellers.models.quote_search_response_quotes_inner_links import QuoteSearchResponseQuotesInnerLinks

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

# convert the object into a dict
quote_search_response_quotes_inner_links_dict = quote_search_response_quotes_inner_links_instance.to_dict()
# create an instance of QuoteSearchResponseQuotesInnerLinks from a dict
quote_search_response_quotes_inner_links_from_dict = QuoteSearchResponseQuotesInnerLinks.from_dict(quote_search_response_quotes_inner_links_dict)

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