Class: GetStream::Generated::Models::TextContentParameters

Inherits:
BaseModel
  • Object
show all
Defined in:
lib/getstream_ruby/generated/models/text_content_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(attributes = {}) ⇒ TextContentParameters

Initialize with attributes



29
30
31
32
33
34
35
36
# File 'lib/getstream_ruby/generated/models/text_content_parameters.rb', line 29

def initialize(attributes = {})
  super(attributes)
  @contains_url = attributes[:contains_url] || attributes['contains_url'] || nil
  @severity = attributes[:severity] || attributes['severity'] || 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_matchArray<String>

Returns:

  • (Array<String>)


20
21
22
# File 'lib/getstream_ruby/generated/models/text_content_parameters.rb', line 20

def blocklist_match
  @blocklist_match
end

#contains_urlBoolean

Returns:

  • (Boolean)


14
15
16
# File 'lib/getstream_ruby/generated/models/text_content_parameters.rb', line 14

def contains_url
  @contains_url
end

#harm_labelsArray<String>

Returns:

  • (Array<String>)


23
24
25
# File 'lib/getstream_ruby/generated/models/text_content_parameters.rb', line 23

def harm_labels
  @harm_labels
end

#llm_harm_labelsHash<String, String>

Returns:

  • (Hash<String, String>)


26
27
28
# File 'lib/getstream_ruby/generated/models/text_content_parameters.rb', line 26

def llm_harm_labels
  @llm_harm_labels
end

#severityString

Returns:

  • (String)


17
18
19
# File 'lib/getstream_ruby/generated/models/text_content_parameters.rb', line 17

def severity
  @severity
end

Class Method Details

.json_field_mappingsObject

Override field mappings for JSON serialization



39
40
41
42
43
44
45
46
47
# File 'lib/getstream_ruby/generated/models/text_content_parameters.rb', line 39

def self.json_field_mappings
  {
    contains_url: 'contains_url',
    severity: 'severity',
    blocklist_match: 'blocklist_match',
    harm_labels: 'harm_labels',
    llm_harm_labels: 'llm_harm_labels'
  }
end