STPSourceOwner
public class STPSourceOwner : NSObject, STPAPIResponseDecodable
Information about a source’s owner.
-
Owner’s address.
Declaration
Swift
@objc public private(set) var address: STPAddress? { get }
-
Owner’s email address.
Declaration
Swift
@objc public private(set) var email: String? { get }
-
Owner’s full name.
Declaration
Swift
@objc public private(set) var name: String? { get }
-
Owner’s phone number.
Declaration
Swift
@objc public private(set) var phone: String? { get }
-
Verified owner’s address.
Declaration
Swift
@objc public private(set) var verifiedAddress: STPAddress? { get }
-
Verified owner’s email address.
Declaration
Swift
@objc public private(set) var verifiedEmail: String? { get }
-
Verified owner’s full name.
Declaration
Swift
@objc public private(set) var verifiedName: String? { get }
-
Verified owner’s phone number.
Declaration
Swift
@objc public private(set) var verifiedPhone: String? { get }
-
Declaration
Swift
@objc private(set) public var allResponseFields: [AnyHashable : Any] { get }
-
Declaration
Swift
@objc public class func decodedObject(fromAPIResponse response: [AnyHashable : Any]?) -> `Self`?