/// <summary>
 /// Initializes a new instance of the AppleCredentialsSecretRequest
 /// class.
 /// </summary>
 /// <param name="data">apple secret details</param>
 /// <param name="displayName">display name of shared connection</param>
 /// <param name="credentialType">credential type of the shared
 /// connection. Values can be credentials|certificate. Possible values
 /// include: 'credentials', 'certificate'</param>
 public AppleCredentialsSecretRequest(AppleSecretDetails data, string displayName = default(string), string credentialType = default(string))
     : base(displayName, credentialType)
 {
     Data = data;
     CustomInit();
 }
Exemple #2
0
 /// <summary>
 /// Initializes a new instance of the
 /// PrivateAppleCredentialsSecretResponse class.
 /// </summary>
 /// <param name="id">id of the shared connection</param>
 /// <param name="data">apple secret details</param>
 /// <param name="displayName">display name of shared connection</param>
 /// <param name="isValid">whether the credentials are valid or
 /// not</param>
 /// <param name="is2FA">if the account is a 2FA account or not</param>
 public PrivateAppleCredentialsSecretResponse(string id, AppleSecretDetails data, string displayName = default(string), bool?isValid = default(bool?), bool?is2FA = default(bool?))
     : base(id, displayName, isValid, is2FA)
 {
     Data = data;
     CustomInit();
 }