Source code for models.salesforce_account_info

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


[docs]class SalesforceAccountInfo(object): """Implementation of the 'SalesforceAccountInfo' model. Salesforce Account Information of a Helios user. Attributes: account_id (string): Specifies the Account Id assigned by Salesforce. user_id (string): Specifies the User Id assigned by Salesforce. """ # Create a mapping from Model property names to API property names _names = { "account_id":'accountId', "user_id":'userId' } def __init__(self, account_id=None, user_id=None): """Constructor for the SalesforceAccountInfo class""" # Initialize members of the class self.account_id = account_id self.user_id = user_id
[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 account_id = dictionary.get('accountId') user_id = dictionary.get('userId') # Return an object of this model return cls(account_id, user_id)