SimpleTemplateData

public class SimpleTemplateData: NSObject, Codable

Represents simple template data including key and variables.

Since

4.22.0
  • key

    The unique identifier for the template data.

    Declaration

    Swift

    public let key: String
  • A dictionary containing the variables for the template.

    Declaration

    Swift

    public let variables: [String: String]
  • Initializes a new SimpleTemplateData from a decoder.

    Declaration

    Swift

    required public init(from decoder: Decoder) throws