Aller au contenu

BannerConfig

Ce contenu n’est pas encore disponible dans votre langue.

struct BannerConfig

Copy for the referral banner, in both the referral and in-app contexts.

Conforms to Swift.Equatable, Swift.Hashable, Swift.Sendable

Defined in: Sources/FrakSDK/Config/FrakResolvedConfig.swift:197

init(referralTitle:referralDescription:referralCta:inappTitle:inappDescription:inappCta:imageUrl:)

Section titled “init(referralTitle:referralDescription:referralCta:inappTitle:inappDescription:inappCta:imageUrl:)”
init(
referralTitle: String? = nil,
referralDescription: String? = nil,
referralCta: String? = nil,
inappTitle: String? = nil,
inappDescription: String? = nil,
inappCta: String? = nil,
imageUrl: String? = nil
)
let imageUrl: String?
let inappCta: String?
let inappDescription: String?
let inappTitle: String?
let referralCta: String?
let referralDescription: String?
let referralTitle: String?

!=(::)

static func != (lhs: Self, rhs: Self) -> Bool

Returns a Boolean value indicating whether two values are not equal.

Inequality is the inverse of equality. For any values a and b, a != b implies that a == b is false.

This is the default implementation of the not-equal-to operator (!=) for any type that conforms to Equatable.

  • Parameters:
    • lhs: A value to compare.
    • rhs: Another value to compare.