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.
1651 |
# File 'sig/types.rbs', line 1651
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.
1647 1648 1649 |
# File 'sig/types.rbs', line 1647 def category @category end |
#end ⇒ Integer (readonly)
Returns the value of attribute end.
1646 1647 1648 |
# File 'sig/types.rbs', line 1646 def end @end end |
#replacement_token ⇒ String (readonly)
Returns the value of attribute replacement_token.
1649 1650 1651 |
# File 'sig/types.rbs', line 1649 def replacement_token @replacement_token end |
#start ⇒ Integer (readonly)
Returns the value of attribute start.
1645 1646 1647 |
# File 'sig/types.rbs', line 1645 def start @start end |
#strategy ⇒ RedactionStrategy (readonly)
Returns the value of attribute strategy.
1648 1649 1650 |
# File 'sig/types.rbs', line 1648 def strategy @strategy end |