SettingsEvent

public struct SettingsEvent<S> : Decodable where S : Decodable

Action instance settings received after calling getSettings().

  • The action’s unique identifier. If your plugin supports multiple actions, you should use this value to see which action was triggered.

    Declaration

    Swift

    public let action: String
  • An opaque value identifying the instance’s action.

    Declaration

    Swift

    public let context: String
  • An opaque value identifying the device.

    Declaration

    Swift

    public let device: String
  • The payload of the event.

    Declaration

    Swift

    public let payload: Payload
  • Container for the settings data.

    See more

    Declaration

    Swift

    public struct Payload : Decodable, Locatable