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.
1757 |
# File 'sig/types.rbs', line 1757
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.
1753 1754 1755 |
# File 'sig/types.rbs', line 1753 def category @category end |
#end ⇒ Integer (readonly)
Returns the value of attribute end.
1752 1753 1754 |
# File 'sig/types.rbs', line 1752 def end @end end |
#replacement_token ⇒ String (readonly)
Returns the value of attribute replacement_token.
1755 1756 1757 |
# File 'sig/types.rbs', line 1755 def replacement_token @replacement_token end |
#start ⇒ Integer (readonly)
Returns the value of attribute start.
1751 1752 1753 |
# File 'sig/types.rbs', line 1751 def start @start end |
#strategy ⇒ RedactionStrategy (readonly)
Returns the value of attribute strategy.
1754 1755 1756 |
# File 'sig/types.rbs', line 1754 def strategy @strategy end |