/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the payment-cryptography-2021-09-14.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.PaymentCryptography.Model
{
///
/// Parameter information for key material import.
///
public partial class ImportKeyMaterial
{
private RootCertificatePublicKey _rootCertificatePublicKey;
private ImportTr31KeyBlock _tr31KeyBlock;
private ImportTr34KeyBlock _tr34KeyBlock;
private TrustedCertificatePublicKey _trustedCertificatePublicKey;
///
/// Gets and sets the property RootCertificatePublicKey.
///
/// Parameter information for root public key certificate import.
///
///
public RootCertificatePublicKey RootCertificatePublicKey
{
get { return this._rootCertificatePublicKey; }
set { this._rootCertificatePublicKey = value; }
}
// Check to see if RootCertificatePublicKey property is set
internal bool IsSetRootCertificatePublicKey()
{
return this._rootCertificatePublicKey != null;
}
///
/// Gets and sets the property Tr31KeyBlock.
///
/// Parameter information for key material import using TR-31 standard.
///
///
public ImportTr31KeyBlock Tr31KeyBlock
{
get { return this._tr31KeyBlock; }
set { this._tr31KeyBlock = value; }
}
// Check to see if Tr31KeyBlock property is set
internal bool IsSetTr31KeyBlock()
{
return this._tr31KeyBlock != null;
}
///
/// Gets and sets the property Tr34KeyBlock.
///
/// Parameter information for key material import using TR-34 standard.
///
///
public ImportTr34KeyBlock Tr34KeyBlock
{
get { return this._tr34KeyBlock; }
set { this._tr34KeyBlock = value; }
}
// Check to see if Tr34KeyBlock property is set
internal bool IsSetTr34KeyBlock()
{
return this._tr34KeyBlock != null;
}
///
/// Gets and sets the property TrustedCertificatePublicKey.
///
/// Parameter information for trusted public key certificate import.
///
///
public TrustedCertificatePublicKey TrustedCertificatePublicKey
{
get { return this._trustedCertificatePublicKey; }
set { this._trustedCertificatePublicKey = value; }
}
// Check to see if TrustedCertificatePublicKey property is set
internal bool IsSetTrustedCertificatePublicKey()
{
return this._trustedCertificatePublicKey != null;
}
}
}