/*
* 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 marketplace-catalog-2018-09-17.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.MarketplaceCatalog.Model
{
///
/// This is the response object from the DescribeEntity operation.
///
public partial class DescribeEntityResponse : AmazonWebServiceResponse
{
private string _details;
private string _entityArn;
private string _entityIdentifier;
private string _entityType;
private string _lastModifiedDate;
///
/// Gets and sets the property Details.
///
/// This stringified JSON object includes the details of the entity.
///
///
[AWSProperty(Min=2, Max=16384)]
public string Details
{
get { return this._details; }
set { this._details = value; }
}
// Check to see if Details property is set
internal bool IsSetDetails()
{
return this._details != null;
}
///
/// Gets and sets the property EntityArn.
///
/// The ARN associated to the unique identifier for the entity referenced in this request.
///
///
[AWSProperty(Min=1, Max=2048)]
public string EntityArn
{
get { return this._entityArn; }
set { this._entityArn = value; }
}
// Check to see if EntityArn property is set
internal bool IsSetEntityArn()
{
return this._entityArn != null;
}
///
/// Gets and sets the property EntityIdentifier.
///
/// The identifier of the entity, in the format of EntityId@RevisionId
.
///
///
[AWSProperty(Min=1, Max=255)]
public string EntityIdentifier
{
get { return this._entityIdentifier; }
set { this._entityIdentifier = value; }
}
// Check to see if EntityIdentifier property is set
internal bool IsSetEntityIdentifier()
{
return this._entityIdentifier != null;
}
///
/// Gets and sets the property EntityType.
///
/// The named type of the entity, in the format of EntityType@Version
.
///
///
[AWSProperty(Min=1, Max=255)]
public string EntityType
{
get { return this._entityType; }
set { this._entityType = value; }
}
// Check to see if EntityType property is set
internal bool IsSetEntityType()
{
return this._entityType != null;
}
///
/// Gets and sets the property LastModifiedDate.
///
/// The last modified date of the entity, in ISO 8601 format (2018-02-27T13:45:22Z).
///
///
[AWSProperty(Min=20, Max=20)]
public string LastModifiedDate
{
get { return this._lastModifiedDate; }
set { this._lastModifiedDate = value; }
}
// Check to see if LastModifiedDate property is set
internal bool IsSetLastModifiedDate()
{
return this._lastModifiedDate != null;
}
}
}