STPSourceReceiver
public class STPSourceReceiver : NSObject, STPAPIResponseDecodable
Information related to a source’s receiver flow.
-
The address of the receiver source. This is the value that should be communicated to the customer to send their funds to.
Declaration
Swift
@objc public private(set) var address: String? { get }
-
The total amount charged by you.
Declaration
Swift
@objc public private(set) var amountCharged: NSNumber? { get }
-
The total amount received by the receiver source.
Declaration
Swift
@objc public private(set) var amountReceived: NSNumber? { get }
-
The total amount that was returned to the customer.
Declaration
Swift
@objc public private(set) var amountReturned: NSNumber? { get }
-
Declaration
Swift
@objc public private(set) var allResponseFields: [AnyHashable : Any] { get }
-
Declaration
Swift
public class func decodedObject(fromAPIResponse response: [AnyHashable : Any]?) -> `Self`?