AWSConnectReference
Objective-C
@interface AWSConnectReference
Swift
class AWSConnectReference
Well-formed data on a contact, used by agents to complete a contact request. You can have up to 4,096 UTF-8 bytes across all references for a contact.
Required parameters: [Value, Type]
-
The type of the reference.
DATE
must be of type Epoch timestamp.Declaration
Objective-C
@property (nonatomic) AWSConnectReferenceType types;
Swift
var types: AWSConnectReferenceType { get set }
-
A valid value for the reference. For example, for a URL reference, a formatted URL that is displayed to an agent in the Contact Control Panel (CCP).
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable value;
Swift
var value: String? { get set }