Class: Xberg::RedactionTerm

Inherits:
Object
  • Object
show all
Defined in:
sig/types.rbs

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeRedactionTerm

Returns a new instance of RedactionTerm.

Parameters:

  • label: (String)
  • value: (String)
  • case_sensitive: (Boolean)


2285
# File 'sig/types.rbs', line 2285

def initialize: (label: String, value: String, case_sensitive: bool) -> void

Instance Attribute Details

#case_sensitiveBoolean (readonly)

Returns the value of attribute case_sensitive.

Returns:

  • (Boolean)


2283
2284
2285
# File 'sig/types.rbs', line 2283

def case_sensitive
  @case_sensitive
end

#labelString (readonly)

Returns the value of attribute label.

Returns:

  • (String)


2281
2282
2283
# File 'sig/types.rbs', line 2281

def label
  @label
end

#valueString (readonly)

Returns the value of attribute value.

Returns:

  • (String)


2282
2283
2284
# File 'sig/types.rbs', line 2282

def value
  @value
end