Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.33 KB

File metadata and controls

31 lines (22 loc) · 1.33 KB

AuthStaticOrganizationAssignment

AuthStaticOrganizationAssignment assigns all users from this auth provider to a single static organization.

Properties

Name Type Description Notes
type str The type of organization assignment.
organization_name str The name of the organization where all users will be assigned.

Example

from flightctl.models.auth_static_organization_assignment import AuthStaticOrganizationAssignment

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

# convert the object into a dict
auth_static_organization_assignment_dict = auth_static_organization_assignment_instance.to_dict()
# create an instance of AuthStaticOrganizationAssignment from a dict
auth_static_organization_assignment_from_dict = AuthStaticOrganizationAssignment.from_dict(auth_static_organization_assignment_dict)

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