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 IssuerCredentials(Model):
16    """The credentials to be used for the certificate issuer.
17
18    :param account_id: The user name/account name/account id.
19    :type account_id: str
20    :param password: The password/secret/account key.
21    :type password: str
22    """
23
24    _attribute_map = {
25        'account_id': {'key': 'account_id', 'type': 'str'},
26        'password': {'key': 'pwd', 'type': 'str'},
27    }
28
29    def __init__(self, *, account_id: str=None, password: str=None, **kwargs) -> None:
30        super(IssuerCredentials, self).__init__(**kwargs)
31        self.account_id = account_id
32        self.password = password
33