AWSConnectParticipantViewContent

Objective-C

@interface AWSConnectParticipantViewContent

Swift

class AWSConnectParticipantViewContent

View content containing all content necessary to render a view except for runtime input data.

  • A list of actions possible from the view

    Declaration

    Objective-C

    @property (nonatomic, strong) NSArray<NSString *> *_Nullable actions;

    Swift

    var actions: [String]? { get set }
  • The schema representing the input data that the view template must be supplied 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 }