LogMessageSource

public struct LogMessageSource : Codable, Equatable

An object that identifies the dialog element that generated the error message.

  • A string that indicates the type of dialog element that generated the error message.

    See more

    Declaration

    Swift

    public enum TypeEnum : String
  • A string that indicates the type of dialog element that generated the error message.

    Declaration

    Swift

    public var type: String?
  • The unique identifier of the dialog node that generated the error message.

    Declaration

    Swift

    public var dialogNode: String?
  • Initialize a LogMessageSource with member variables.

    Declaration

    Swift

    public init(
        type: String? = nil,
        dialogNode: String? = nil
    )

    Parameters

    type

    A string that indicates the type of dialog element that generated the error message.

    dialogNode

    The unique identifier of the dialog node that generated the error message.

    Return Value

    An initialized LogMessageSource.