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.
1695 |
# File 'sig/types.rbs', line 1695
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.
1691 1692 1693 |
# File 'sig/types.rbs', line 1691 def category @category end |
#end ⇒ Integer (readonly)
Returns the value of attribute end.
1690 1691 1692 |
# File 'sig/types.rbs', line 1690 def end @end end |
#replacement_token ⇒ String (readonly)
Returns the value of attribute replacement_token.
1693 1694 1695 |
# File 'sig/types.rbs', line 1693 def replacement_token @replacement_token end |
#start ⇒ Integer (readonly)
Returns the value of attribute start.
1689 1690 1691 |
# File 'sig/types.rbs', line 1689 def start @start end |
#strategy ⇒ RedactionStrategy (readonly)
Returns the value of attribute strategy.
1692 1693 1694 |
# File 'sig/types.rbs', line 1692 def strategy @strategy end |