SBSDKVCardDocumentField
@interface SBSDKVCardDocumentField : NSObject
vCard document field description.
-
Raw field value.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nonnull rawText;
Swift
var rawText: String { get set }
-
Field type.
Declaration
Objective-C
@property (nonatomic) SBSDKVCardDocumentFieldType type;
Swift
var type: SBSDKVCardDocumentFieldType { get set }
-
Field type modifiers.
Declaration
Objective-C
@property (nonatomic, strong) NSArray<NSString *> *_Nonnull typeModifiers;
Swift
var typeModifiers: [String] { get set }
-
Field values.
Declaration
Objective-C
@property (nonatomic, strong) NSArray<NSString *> *_Nonnull values;
Swift
var values: [String] { get set }
-
Human-readable field type name.
Declaration
Objective-C
@property (nonatomic, strong, readonly) NSString *_Nonnull typeHumanReadableString;
Swift
var typeHumanReadableString: String { get }