DialogNodeOutputModifiers

public struct DialogNodeOutputModifiers : Codable, Equatable

Options that modify how specified output is handled.

  • Whether values in the output will overwrite output values in an array specified by previously executed dialog nodes. If this option is set to false, new values will be appended to previously specified values.

    Declaration

    Swift

    public var overwrite: Bool?
  • Initialize a DialogNodeOutputModifiers with member variables.

    Declaration

    Swift

    public init(
        overwrite: Bool? = nil
    )

    Parameters

    overwrite

    Whether values in the output will overwrite output values in an array specified by previously executed dialog nodes. If this option is set to false, new values will be appended to previously specified values.

    Return Value

    An initialized DialogNodeOutputModifiers.