ResponseInfo
public struct ResponseInfo : Codable, Equatable
Struct representing Offer Responding related values.
-
Value representing the offer response id.
Declaration
Swift
public let id: Int
-
Certificate object data.
Declaration
Swift
public var certificate: Certificate?
-
Coupon object data.
Declaration
Swift
public var coupon: Coupon?
-
Shows if the offer response is respondable or not.
Declaration
Swift
public let respondable: Bool
-
Respondable Info of the offer response.
Declaration
Swift
public let respondableInfo: RespondableInfo?
-
Undocumented
Declaration
Swift
public init(id: Int, certificate: Certificate?, coupon: Coupon?, respondable: Bool, respondableInfo: RespondableInfo?)
-
Declaration
Swift
public init(from decoder: Decoder) throws