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.
1722 |
# File 'sig/types.rbs', line 1722
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.
1718 1719 1720 |
# File 'sig/types.rbs', line 1718 def category @category end |
#end ⇒ Integer (readonly)
Returns the value of attribute end.
1717 1718 1719 |
# File 'sig/types.rbs', line 1717 def end @end end |
#replacement_token ⇒ String (readonly)
Returns the value of attribute replacement_token.
1720 1721 1722 |
# File 'sig/types.rbs', line 1720 def replacement_token @replacement_token end |
#start ⇒ Integer (readonly)
Returns the value of attribute start.
1716 1717 1718 |
# File 'sig/types.rbs', line 1716 def start @start end |
#strategy ⇒ RedactionStrategy (readonly)
Returns the value of attribute strategy.
1719 1720 1721 |
# File 'sig/types.rbs', line 1719 def strategy @strategy end |