1# coding=utf-8
2# --------------------------------------------------------------------------
3# Copyright (c) Microsoft Corporation. All rights reserved.
4# Licensed under the MIT License. See License.txt in the project root for
5# license information.
6#
7# Code generated by Microsoft (R) AutoRest Code Generator.
8# Changes may cause incorrect behavior and will be lost if the code is
9# regenerated.
10# --------------------------------------------------------------------------
11
12from msrest.serialization import Model
13
14
15class OrganizationDetails(Model):
16    """Details of the organization of the certificate issuer.
17
18    :param id: Id of the organization.
19    :type id: str
20    :param admin_details: Details of the organization administrator.
21    :type admin_details:
22     list[~azure.keyvault.v2016_10_01.models.AdministratorDetails]
23    """
24
25    _attribute_map = {
26        'id': {'key': 'id', 'type': 'str'},
27        'admin_details': {'key': 'admin_details', 'type': '[AdministratorDetails]'},
28    }
29
30    def __init__(self, **kwargs):
31        super(OrganizationDetails, self).__init__(**kwargs)
32        self.id = kwargs.get('id', None)
33        self.admin_details = kwargs.get('admin_details', None)
34