Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 1.02 KB

MetadataExpression.md

File metadata and controls

30 lines (22 loc) · 1.02 KB

MetadataExpression

Properties

Name Type Description Notes
metadata_key str
operator Operator
text_value str [optional]

Example

from finbourne_access.models.metadata_expression import MetadataExpression

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

# convert the object into a dict
metadata_expression_dict = metadata_expression_instance.to_dict()
# create an instance of MetadataExpression from a dict
metadata_expression_form_dict = metadata_expression.from_dict(metadata_expression_dict)

Back to Model listBack to API listBack to README