AWSConnectViewContent
Objective-C
@interface AWSConnectViewContent
Swift
class AWSConnectViewContent
View content containing all content necessary to render a view except for runtime input data.
-
A list of possible actions from the view.
Declaration
Objective-C
@property (nonatomic, strong) NSArray<NSString *> *_Nullable actions;
Swift
var actions: [String]? { get set }
-
The data schema matching data that the view template must be provided to render.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable inputSchema;
Swift
var inputSchema: String? { get set }
-
The view template representing the structure of the view.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable template;
Swift
var template: String? { get set }