AATFeedAdOptions

@objc public class AATFeedAdOptions : NSObject {

    /// Desired UIColor to be used for shutter, default is nil.
    public let shutterColor: UIColor?

    /// Boolean that describe if spinner should be disabled, default is false.
    public let disableSpinner: Bool

    /// Init AATFeedAdOptions
    /// - Parameter shutterColor: Desired UIColor to be used for shutter, default is nil.
    /// - Parameter disableSpinner: Boolean that describes if spinner should be disabled, default is false.
    @objc public init(shutterColor: UIColor? = nil, disableSpinner: Bool = false)
}

Last updated