AWSConnectParticipantTimerValue
Objective-C
@interface AWSConnectParticipantTimerValue
Swift
class AWSConnectParticipantTimerValue
The value of the timer. Either the timer action (Unset
to delete the timer), or the duration of the timer in minutes. Only one value can be set.
For more information about how chat timeouts work, see Set up chat timeouts for human participants.
-
The timer action. Currently only one value is allowed:
Unset
. It deletes a timer.Declaration
Objective-C
@property (nonatomic) AWSConnectParticipantTimerAction participantTimerAction;
Swift
var participantTimerAction: AWSConnectParticipantTimerAction { get set }
-
The duration of a timer, in minutes.
Declaration
Objective-C
@property (nonatomic, strong) NSNumber *_Nullable participantTimerDurationInMinutes;
Swift
var participantTimerDurationInMinutes: NSNumber? { get set }