AATRewardedAdSSVInfo

/// An object contains rewarded videos server-side verification data
@objc public class AATRewardedAdSSVInfo : NSObject {

    /// Impression user id
    @objc public var userId: String

    /// Custom string
    @objc public var customString: String?

    /// Create ``AATSSVInfo`` instance
    /// - Parameters:
    ///   - userId: user id
    ///   - customString: custom string
    @objc public init(userId: String, customString: String? = nil)
}

Last updated