Source code for models.user_info

# -*- coding: utf-8 -*-
# Copyright 2021 Cohesity Inc.


[docs]class UserInfo(object): """Implementation of the 'UserInfo' model. Specifies struct with basic user details. Attributes: domain (string): Specifies domain name of the user. sid (string): Specifies unique Security ID (SID) of the user. tenant_id (string): Specifies the tenant for which the users are to be deleted. user_name (string): Specifies user name of the user. """ # Create a mapping from Model property names to API property names _names = { "domain":'domain', "sid":'sid', "tenant_id":'tenantId', "user_name":'userName' } def __init__(self, domain=None, sid=None, tenant_id=None, user_name=None): """Constructor for the UserInfo class""" # Initialize members of the class self.domain = domain self.sid = sid self.tenant_id = tenant_id self.user_name = user_name
[docs] @classmethod def from_dictionary(cls, dictionary): """Creates an instance of this model from a dictionary Args: dictionary (dictionary): A dictionary representation of the object as obtained from the deserialization of the server's response. The keys MUST match property names in the API description. Returns: object: An instance of this structure class. """ if dictionary is None: return None # Extract variables from the dictionary domain = dictionary.get('domain') sid = dictionary.get('sid') tenant_id = dictionary.get('tenantId') user_name = dictionary.get('userName') # Return an object of this model return cls(domain, sid, tenant_id, user_name)