Class: Xberg::RedactionTerm
- Inherits:
-
Object
- Object
- Xberg::RedactionTerm
- Defined in:
- sig/types.rbs
Instance Attribute Summary collapse
-
#case_sensitive ⇒ Boolean
readonly
Returns the value of attribute case_sensitive.
-
#label ⇒ String
readonly
Returns the value of attribute label.
-
#value ⇒ String
readonly
Returns the value of attribute value.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize ⇒ RedactionTerm
constructor
A new instance of RedactionTerm.
Constructor Details
#initialize ⇒ RedactionTerm
Returns a new instance of RedactionTerm.
489 |
# File 'sig/types.rbs', line 489
def initialize: (label: String, value: String, case_sensitive: bool) -> void
|
Instance Attribute Details
#case_sensitive ⇒ Boolean (readonly)
Returns the value of attribute case_sensitive.
487 488 489 |
# File 'sig/types.rbs', line 487 def case_sensitive @case_sensitive end |
#label ⇒ String (readonly)
Returns the value of attribute label.
485 486 487 |
# File 'sig/types.rbs', line 485 def label @label end |
#value ⇒ String (readonly)
Returns the value of attribute value.
486 487 488 |
# File 'sig/types.rbs', line 486 def value @value end |
Class Method Details
.labeled ⇒ RedactionTerm
491 |
# File 'sig/types.rbs', line 491
def self.labeled: (String label, String value) -> RedactionTerm
|
.literal ⇒ RedactionTerm
490 |
# File 'sig/types.rbs', line 490
def self.literal: (String value) -> RedactionTerm
|