PartnerInformation

public struct PartnerInformation : Codable, Equatable

Partner Information to be passed when presenting inPath/standalone flows

  • Optional tracking ID for the session

    Declaration

    Swift

    public var correlationId: String?
  • Optional partner reference for the booking that this car rental will attach to

    Declaration

    Swift

    public var partnerBookingReference: String?
  • Optional advertising platform to identify the source platform of a search referral

    Declaration

    Swift

    public var advertisingPlatform: String?
  • Optional advertising campaign to identify the source campaign of a search referral

    Declaration

    Swift

    public var advertisingCampaign: String?
  • Optional cookie consent - default will assume only essential cookies are allowed

    Declaration

    Swift

    public var cookieConsent: [CookieType]?
  • Initializes the PartnerInformation with a block-based builder

    Declaration

    Swift

    public init?(block: ((PartnerInformationBuilder) -> Void))

    Parameters

    block

    Closure block that sets variables on the PartnerInformationtBuilder instance it is passed in