You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The ID of the user who created the Application cart item filter.
[optional]
expression
List[object]
Arbitrary additional JSON data associated with the Application cart item filter.
[optional]
Example
fromtalon_one.models.new_application_cif_expressionimportNewApplicationCIFExpression# TODO update the JSON string belowjson="{}"# create an instance of NewApplicationCIFExpression from a JSON stringnew_application_cif_expression_instance=NewApplicationCIFExpression.from_json(json)
# print the JSON string representation of the objectprint(NewApplicationCIFExpression.to_json())
# convert the object into a dictnew_application_cif_expression_dict=new_application_cif_expression_instance.to_dict()
# create an instance of NewApplicationCIFExpression from a dictnew_application_cif_expression_from_dict=NewApplicationCIFExpression.from_dict(new_application_cif_expression_dict)