AWSConnectReferenceSummary
Objective-C
@interface AWSConnectReferenceSummary
Swift
class AWSConnectReferenceSummary
Contains summary information about a reference. ReferenceSummary
contains only one non null field between the URL and attachment based on the reference type.
-
Information about the reference when the
referenceType
isATTACHMENT
. Otherwise, null.Declaration
Objective-C
@property (nonatomic, strong) AWSConnectAttachmentReference *_Nullable attachment;
Swift
var attachment: AWSConnectAttachmentReference? { get set }
-
Information about a reference when the
referenceType
isDATE
. Otherwise, null.Declaration
Objective-C
@property (nonatomic, strong) AWSConnectDateReference *_Nullable date;
Swift
var date: AWSConnectDateReference? { get set }
-
Information about a reference when the
referenceType
isEMAIL
. Otherwise, null.Declaration
Objective-C
@property (nonatomic, strong) AWSConnectEmailReference *_Nullable email;
Swift
var email: AWSConnectEmailReference? { get set }
-
Information about a reference when the
referenceType
isNUMBER
. Otherwise, null.Declaration
Objective-C
@property (nonatomic, strong) AWSConnectNumberReference *_Nullable number;
Swift
var number: AWSConnectNumberReference? { get set }
-
Information about a reference when the
referenceType
isSTRING
. Otherwise, null.Declaration
Objective-C
@property (nonatomic, strong) AWSConnectStringReference *_Nullable string;
Swift
var string: AWSConnectStringReference? { get set }
-
Information about the reference when the
referenceType
isURL
. Otherwise, null.Declaration
Objective-C
@property (nonatomic, strong) AWSConnectUrlReference *_Nullable url;
Swift
var url: AWSConnectUrlReference? { get set }