STPSourceOwner
@interface STPSourceOwner : NSObject <STPAPIResponseDecodable>
Information about a source’s owner.
-
Unavailable
You cannot directly instantiate an STPSourceOwner. You should only use one that is part of an existing STPSource object.
You cannot directly instantiate an
STPSourceOwner
. You should only use one that is part of an existingSTPSource
object.Declaration
Objective-C
- (nonnull instancetype)init;
-
Owner’s address.
Declaration
Objective-C
@property (readonly, nonatomic, nullable) STPAddress *address;
Swift
var address: STPAddress? { get }
-
Owner’s email address.
Declaration
Objective-C
@property (readonly, nonatomic, nullable) NSString *email;
Swift
var email: String? { get }
-
Owner’s full name.
Declaration
Objective-C
@property (readonly, nonatomic, nullable) NSString *name;
Swift
var name: String? { get }
-
Owner’s phone number.
Declaration
Objective-C
@property (readonly, nonatomic, nullable) NSString *phone;
Swift
var phone: String? { get }
-
Verified owner’s address.
Declaration
Objective-C
@property (readonly, nonatomic, nullable) STPAddress *verifiedAddress;
Swift
var verifiedAddress: STPAddress? { get }
-
Verified owner’s email address.
Declaration
Objective-C
@property (readonly, nonatomic, nullable) NSString *verifiedEmail;
Swift
var verifiedEmail: String? { get }
-
Verified owner’s full name.
Declaration
Objective-C
@property (readonly, nonatomic, nullable) NSString *verifiedName;
Swift
var verifiedName: String? { get }
-
Verified owner’s phone number.
Declaration
Objective-C
@property (readonly, nonatomic, nullable) NSString *verifiedPhone;
Swift
var verifiedPhone: String? { get }