Class: GetStream::Generated::Models::TextRuleParameters
- Inherits:
-
BaseModel
- Object
- BaseModel
- GetStream::Generated::Models::TextRuleParameters
show all
- Defined in:
- lib/getstream_ruby/generated/models/text_rule_parameters.rb
Instance Attribute Summary collapse
Class Method Summary
collapse
Instance Method Summary
collapse
Methods inherited from BaseModel
#==, #inspect, omit_empty_fields, #to_h, #to_json
Constructor Details
Initialize with attributes
35
36
37
38
39
40
41
42
43
44
|
# File 'lib/getstream_ruby/generated/models/text_rule_parameters.rb', line 35
def initialize(attributes = {})
super(attributes)
@contains_url = attributes[:contains_url] || attributes['contains_url'] || nil
@severity = attributes[:severity] || attributes['severity'] || nil
@threshold = attributes[:threshold] || attributes['threshold'] || nil
@time_window = attributes[:time_window] || attributes['time_window'] || nil
@blocklist_match = attributes[:blocklist_match] || attributes['blocklist_match'] || nil
@harm_labels = attributes[:harm_labels] || attributes['harm_labels'] || nil
@llm_harm_labels = attributes[:llm_harm_labels] || attributes['llm_harm_labels'] || nil
end
|
Instance Attribute Details
#blocklist_match ⇒ Array<String>
26
27
28
|
# File 'lib/getstream_ruby/generated/models/text_rule_parameters.rb', line 26
def blocklist_match
@blocklist_match
end
|
#contains_url ⇒ Boolean
14
15
16
|
# File 'lib/getstream_ruby/generated/models/text_rule_parameters.rb', line 14
def contains_url
@contains_url
end
|
#harm_labels ⇒ Array<String>
29
30
31
|
# File 'lib/getstream_ruby/generated/models/text_rule_parameters.rb', line 29
def harm_labels
@harm_labels
end
|
#llm_harm_labels ⇒ Hash<String, String>
32
33
34
|
# File 'lib/getstream_ruby/generated/models/text_rule_parameters.rb', line 32
def llm_harm_labels
@llm_harm_labels
end
|
#severity ⇒ String
17
18
19
|
# File 'lib/getstream_ruby/generated/models/text_rule_parameters.rb', line 17
def severity
@severity
end
|
#threshold ⇒ Integer
20
21
22
|
# File 'lib/getstream_ruby/generated/models/text_rule_parameters.rb', line 20
def threshold
@threshold
end
|
#time_window ⇒ String
23
24
25
|
# File 'lib/getstream_ruby/generated/models/text_rule_parameters.rb', line 23
def time_window
@time_window
end
|
Class Method Details
.json_field_mappings ⇒ Object
Override field mappings for JSON serialization
47
48
49
50
51
52
53
54
55
56
57
|
# File 'lib/getstream_ruby/generated/models/text_rule_parameters.rb', line 47
def self.json_field_mappings
{
contains_url: 'contains_url',
severity: 'severity',
threshold: 'threshold',
time_window: 'time_window',
blocklist_match: 'blocklist_match',
harm_labels: 'harm_labels',
llm_harm_labels: 'llm_harm_labels'
}
end
|