Class: Xberg::RedactionFinding
- Inherits:
-
Object
- Object
- Xberg::RedactionFinding
- Defined in:
- sig/types.rbs
Instance Attribute Summary collapse
-
#category ⇒ PiiCategory
readonly
Returns the value of attribute category.
-
#end ⇒ Integer
readonly
Returns the value of attribute end.
-
#replacement_token ⇒ String
readonly
Returns the value of attribute replacement_token.
-
#start ⇒ Integer
readonly
Returns the value of attribute start.
-
#strategy ⇒ RedactionStrategy
readonly
Returns the value of attribute strategy.
Instance Method Summary collapse
-
#initialize ⇒ RedactionFinding
constructor
A new instance of RedactionFinding.
Constructor Details
#initialize ⇒ RedactionFinding
Returns a new instance of RedactionFinding.
1640 |
# File 'sig/types.rbs', line 1640
def initialize: (start: Integer, end: Integer, category: PiiCategory, strategy: RedactionStrategy, replacement_token: String) -> void
|
Instance Attribute Details
#category ⇒ PiiCategory (readonly)
Returns the value of attribute category.
1636 1637 1638 |
# File 'sig/types.rbs', line 1636 def category @category end |
#end ⇒ Integer (readonly)
Returns the value of attribute end.
1635 1636 1637 |
# File 'sig/types.rbs', line 1635 def end @end end |
#replacement_token ⇒ String (readonly)
Returns the value of attribute replacement_token.
1638 1639 1640 |
# File 'sig/types.rbs', line 1638 def replacement_token @replacement_token end |
#start ⇒ Integer (readonly)
Returns the value of attribute start.
1634 1635 1636 |
# File 'sig/types.rbs', line 1634 def start @start end |
#strategy ⇒ RedactionStrategy (readonly)
Returns the value of attribute strategy.
1637 1638 1639 |
# File 'sig/types.rbs', line 1637 def strategy @strategy end |