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 task ids associated with the compliance breach for this order's groups (if failing).
[optional]
likely_responsible_for_status
bool
Whether this order is deemed as a likely contributor to the non-passing rule for this group.
[optional]
Example
fromlusid.models.contribution_to_non_passing_rule_detailimportContributionToNonPassingRuleDetail# TODO update the JSON string belowjson="{}"# create an instance of ContributionToNonPassingRuleDetail from a JSON stringcontribution_to_non_passing_rule_detail_instance=ContributionToNonPassingRuleDetail.from_json(json)
# print the JSON string representation of the objectprintContributionToNonPassingRuleDetail.to_json()
# convert the object into a dictcontribution_to_non_passing_rule_detail_dict=contribution_to_non_passing_rule_detail_instance.to_dict()
# create an instance of ContributionToNonPassingRuleDetail from a dictcontribution_to_non_passing_rule_detail_form_dict=contribution_to_non_passing_rule_detail.from_dict(contribution_to_non_passing_rule_detail_dict)