/*
* 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 sesv2-2019-09-27.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.SimpleEmailV2.Model
{
///
/// An object that contains information about email that was sent from the selected domain.
///
public partial class OverallVolume
{
private List _domainIspPlacements = new List();
private double? _readRatePercent;
private VolumeStatistics _volumeStatistics;
///
/// Gets and sets the property DomainIspPlacements.
///
/// An object that contains inbox and junk mail placement metrics for individual email
/// providers.
///
///
public List DomainIspPlacements
{
get { return this._domainIspPlacements; }
set { this._domainIspPlacements = value; }
}
// Check to see if DomainIspPlacements property is set
internal bool IsSetDomainIspPlacements()
{
return this._domainIspPlacements != null && this._domainIspPlacements.Count > 0;
}
///
/// Gets and sets the property ReadRatePercent.
///
/// The percentage of emails that were sent from the domain that were read by their recipients.
///
///
public double ReadRatePercent
{
get { return this._readRatePercent.GetValueOrDefault(); }
set { this._readRatePercent = value; }
}
// Check to see if ReadRatePercent property is set
internal bool IsSetReadRatePercent()
{
return this._readRatePercent.HasValue;
}
///
/// Gets and sets the property VolumeStatistics.
///
/// An object that contains information about the numbers of messages that arrived in
/// recipients' inboxes and junk mail folders.
///
///
public VolumeStatistics VolumeStatistics
{
get { return this._volumeStatistics; }
set { this._volumeStatistics = value; }
}
// Check to see if VolumeStatistics property is set
internal bool IsSetVolumeStatistics()
{
return this._volumeStatistics != null;
}
}
}