Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 1.26 KB

IfExpression.md

File metadata and controls

31 lines (23 loc) · 1.26 KB

IfExpression

Properties

Name Type Description Notes
if_request_header_expression IfRequestHeaderExpression [optional]
if_identity_claim_expression IfIdentityClaimExpression [optional]
if_identity_scope_expression IfIdentityScopeExpression [optional]
if_feature_chain_expression IfFeatureChainExpression [optional]

Example

from finbourne_access.models.if_expression import IfExpression

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

# convert the object into a dict
if_expression_dict = if_expression_instance.to_dict()
# create an instance of IfExpression from a dict
if_expression_form_dict = if_expression.from_dict(if_expression_dict)

Back to Model listBack to API listBack to README