namespace Chartboost.Mediation.AmazonPublisherServices
{
#nullable enable
///
/// Data struct to store all the Amazon pre bid settings from the configuration.
///
public struct AmazonSettings
{
///
/// The Amazon placement name.
///
public readonly string PartnerPlacement;
///
/// The width of the expected ad if it's a banner.
///
public readonly int? Width;
///
/// The height of the expected ad if it's a banner.
///
public readonly int? Height;
///
/// Indicates if this is a video placement.
///
public readonly bool? IsVideo;
public AmazonSettings(string partnerPlacement, bool? isVideo, int? height, int? width)
{
PartnerPlacement = partnerPlacement;
IsVideo = isVideo;
Height = height;
Width = width;
}
}
#nullable disable
}