Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 1.32 KB

AuthClaim.md

File metadata and controls

30 lines (22 loc) · 1.32 KB

AuthClaim

Properties

Name Type Description Notes
name str The attribute name for the claim when its returned in an Access Token
user_attribute_mappings str A user attribute to map values from For custom attributes prefix the name of the attribute with `custom_attribute_`. e.g. To get the value for custom attribute `employee_id` use `custom_attribute_employee_id`. [optional]
user_attribute_macros str When `user_attribute_mappings` is set to `macro` this macro will be used to assign the parameter value. [optional]

Example

from onelogin.models.auth_claim import AuthClaim

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

# convert the object into a dict
auth_claim_dict = auth_claim_instance.to_dict()
# create an instance of AuthClaim from a dict
auth_claim_form_dict = auth_claim.from_dict(auth_claim_dict)

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