SMIRemoteConfiguration
Objective-C
@protocol SMIRemoteConfiguration
Swift
protocol RemoteConfiguration
Remote configuration information representing this embedded service deployment.
-
The list of pre-chat configurations.
Declaration
Objective-C
@property (nonatomic, strong, readonly, nullable) NSArray<id<SMIPreChatConfiguration>> *preChatConfiguration;
Swift
var preChatConfiguration: [PreChatConfiguration]? { get }
-
The name of this remote configuration.
Declaration
Objective-C
@property (nonatomic, strong, readonly) NSString *_Nonnull name;
Swift
var name: String { get }
-
The deployment type of the remote configuration.
Declaration
Objective-C
@property (nonatomic, strong, readonly) NSString *_Nonnull deploymentType;
Swift
var deploymentType: String { get }
-
The timestamp of the remote configuration.
Declaration
Objective-C
@property (nonatomic, strong, readonly) NSDate *_Nonnull timestamp;
Swift
var timestamp: Date { get }