Class: Zernio::CreateInboxConversationRequest

Inherits:
ApiModelBase
  • Object
show all
Defined in:
lib/zernio-sdk/models/create_inbox_conversation_request.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from ApiModelBase

_deserialize, #_to_hash, #to_body, #to_s

Constructor Details

#initialize(attributes = {}) ⇒ CreateInboxConversationRequest

Initializes the object

Parameters:

  • attributes (Hash) (defaults to: {})

    Model attributes in the form of hash



92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
# File 'lib/zernio-sdk/models/create_inbox_conversation_request.rb', line 92

def initialize(attributes = {})
  if (!attributes.is_a?(Hash))
    fail ArgumentError, "The input argument (attributes) must be a hash in `Zernio::CreateInboxConversationRequest` initialize method"
  end

  # check to see if the attribute exists and convert string to symbol for hash key
  acceptable_attribute_map = self.class.acceptable_attribute_map
  attributes = attributes.each_with_object({}) { |(k, v), h|
    if (!acceptable_attribute_map.key?(k.to_sym))
      fail ArgumentError, "`#{k}` is not a valid attribute in `Zernio::CreateInboxConversationRequest`. Please check the name to make sure it's valid. List of attributes: " + acceptable_attribute_map.keys.inspect
    end
    h[k.to_sym] = v
  }

  if attributes.key?(:'account_id')
    self. = attributes[:'account_id']
  else
    self. = nil
  end

  if attributes.key?(:'participant_id')
    self.participant_id = attributes[:'participant_id']
  end

  if attributes.key?(:'participant_username')
    self.participant_username = attributes[:'participant_username']
  end

  if attributes.key?(:'message')
    self.message = attributes[:'message']
  end

  if attributes.key?(:'skip_dm_check')
    self.skip_dm_check = attributes[:'skip_dm_check']
  else
    self.skip_dm_check = false
  end

  if attributes.key?(:'template_name')
    self.template_name = attributes[:'template_name']
  end

  if attributes.key?(:'template_language')
    self.template_language = attributes[:'template_language']
  end

  if attributes.key?(:'template_params')
    if (value = attributes[:'template_params']).is_a?(Array)
      self.template_params = value
    end
  end

  if attributes.key?(:'header_media')
    self.header_media = attributes[:'header_media']
  end
end

Instance Attribute Details

#account_idObject

The social account ID to send from



19
20
21
# File 'lib/zernio-sdk/models/create_inbox_conversation_request.rb', line 19

def 
  @account_id
end

#header_mediaObject

Returns the value of attribute header_media.



42
43
44
# File 'lib/zernio-sdk/models/create_inbox_conversation_request.rb', line 42

def header_media
  @header_media
end

#messageObject

Text content of the message. At least one of message, attachment, or (for WhatsApp) templateName is required.



28
29
30
# File 'lib/zernio-sdk/models/create_inbox_conversation_request.rb', line 28

def message
  @message
end

#participant_idObject

Recipient identifier. For X this is the numeric user ID; for WhatsApp, the recipient phone number in international format (digits, country code included). Provide either this or participantUsername.



22
23
24
# File 'lib/zernio-sdk/models/create_inbox_conversation_request.rb', line 22

def participant_id
  @participant_id
end

#participant_usernameObject

Recipient handle/username — an X or Bluesky handle (with or without @) or a Reddit username (with or without u/). Resolved via lookup. Provide either this or participantId.



25
26
27
# File 'lib/zernio-sdk/models/create_inbox_conversation_request.rb', line 25

def participant_username
  @participant_username
end

#skip_dm_checkObject

X/Twitter only. Skip the receives_your_dm eligibility check before sending. Use if you have already verified the recipient accepts DMs.



31
32
33
# File 'lib/zernio-sdk/models/create_inbox_conversation_request.rb', line 31

def skip_dm_check
  @skip_dm_check
end

#template_languageObject

WhatsApp only. Template language code (e.g. en_US).



37
38
39
# File 'lib/zernio-sdk/models/create_inbox_conversation_request.rb', line 37

def template_language
  @template_language
end

#template_nameObject

WhatsApp only. Name of the approved template to start the conversation with (required for WhatsApp).



34
35
36
# File 'lib/zernio-sdk/models/create_inbox_conversation_request.rb', line 34

def template_name
  @template_name
end

#template_paramsObject

WhatsApp only. Template variable values as one flat array, in the order the variables appear across the whole template: text-header variables first, then body variables, then one value per dynamic URL button (in button order). Works with positional placeholders ({1}, {2}, ...) and with named placeholders ({name}, {company} - how Meta Business Manager creates templates), where values fill the named slots in order of appearance. Example - a body with {1}, {2} plus a URL button https://example.com/{1} takes three values: [body1, body2, buttonSuffix]. Media headers (image, video, document) are filled automatically from the approved template and take no value here (use headerMedia to override the header asset per send).



40
41
42
# File 'lib/zernio-sdk/models/create_inbox_conversation_request.rb', line 40

def template_params
  @template_params
end

Class Method Details

.acceptable_attribute_mapObject

Returns attribute mapping this model knows about



60
61
62
# File 'lib/zernio-sdk/models/create_inbox_conversation_request.rb', line 60

def self.acceptable_attribute_map
  attribute_map
end

.acceptable_attributesObject

Returns all the JSON keys this model knows about



65
66
67
# File 'lib/zernio-sdk/models/create_inbox_conversation_request.rb', line 65

def self.acceptable_attributes
  acceptable_attribute_map.values
end

.attribute_mapObject

Attribute mapping from ruby-style variable name to JSON key.



45
46
47
48
49
50
51
52
53
54
55
56
57
# File 'lib/zernio-sdk/models/create_inbox_conversation_request.rb', line 45

def self.attribute_map
  {
    :'account_id' => :'accountId',
    :'participant_id' => :'participantId',
    :'participant_username' => :'participantUsername',
    :'message' => :'message',
    :'skip_dm_check' => :'skipDmCheck',
    :'template_name' => :'templateName',
    :'template_language' => :'templateLanguage',
    :'template_params' => :'templateParams',
    :'header_media' => :'headerMedia'
  }
end

.build_from_hash(attributes) ⇒ Object

Builds the object from hash

Parameters:

  • attributes (Hash)

    Model attributes in the form of hash

Returns:

  • (Object)

    Returns the model itself



210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
# File 'lib/zernio-sdk/models/create_inbox_conversation_request.rb', line 210

def self.build_from_hash(attributes)
  return nil unless attributes.is_a?(Hash)
  attributes = attributes.transform_keys(&:to_sym)
  transformed_hash = {}
  openapi_types.each_pair do |key, type|
    if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil?
      transformed_hash["#{key}"] = nil
    elsif type =~ /\AArray<(.*)>/i
      # check to ensure the input is an array given that the attribute
      # is documented as an array but the input is not
      if attributes[attribute_map[key]].is_a?(Array)
        transformed_hash["#{key}"] = attributes[attribute_map[key]].map { |v| _deserialize($1, v) }
      end
    elsif !attributes[attribute_map[key]].nil?
      transformed_hash["#{key}"] = _deserialize(type, attributes[attribute_map[key]])
    end
  end
  new(transformed_hash)
end

.openapi_nullableObject

List of attributes with nullable: true



85
86
87
88
# File 'lib/zernio-sdk/models/create_inbox_conversation_request.rb', line 85

def self.openapi_nullable
  Set.new([
  ])
end

.openapi_typesObject

Attribute type mapping.



70
71
72
73
74
75
76
77
78
79
80
81
82
# File 'lib/zernio-sdk/models/create_inbox_conversation_request.rb', line 70

def self.openapi_types
  {
    :'account_id' => :'String',
    :'participant_id' => :'String',
    :'participant_username' => :'String',
    :'message' => :'String',
    :'skip_dm_check' => :'Boolean',
    :'template_name' => :'String',
    :'template_language' => :'String',
    :'template_params' => :'Array<String>',
    :'header_media' => :'CreateInboxConversationRequestHeaderMedia'
  }
end

Instance Method Details

#==(o) ⇒ Object

Checks equality by comparing each attribute.

Parameters:

  • Object (Object)

    to be compared



181
182
183
184
185
186
187
188
189
190
191
192
193
# File 'lib/zernio-sdk/models/create_inbox_conversation_request.rb', line 181

def ==(o)
  return true if self.equal?(o)
  self.class == o.class &&
       == o. &&
      participant_id == o.participant_id &&
      participant_username == o.participant_username &&
      message == o.message &&
      skip_dm_check == o.skip_dm_check &&
      template_name == o.template_name &&
      template_language == o.template_language &&
      template_params == o.template_params &&
      header_media == o.header_media
end

#eql?(o) ⇒ Boolean

Parameters:

  • Object (Object)

    to be compared

Returns:

  • (Boolean)

See Also:

  • `==` method


197
198
199
# File 'lib/zernio-sdk/models/create_inbox_conversation_request.rb', line 197

def eql?(o)
  self == o
end

#hashInteger

Calculates hash code according to all attributes.

Returns:

  • (Integer)

    Hash code



203
204
205
# File 'lib/zernio-sdk/models/create_inbox_conversation_request.rb', line 203

def hash
  [, participant_id, participant_username, message, skip_dm_check, template_name, template_language, template_params, header_media].hash
end

#list_invalid_propertiesObject

Show invalid properties with the reasons. Usually used together with valid?

Returns:

  • Array for valid properties with the reasons



151
152
153
154
155
156
157
158
159
# File 'lib/zernio-sdk/models/create_inbox_conversation_request.rb', line 151

def list_invalid_properties
  warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
  invalid_properties = Array.new
  if @account_id.nil?
    invalid_properties.push('invalid value for "account_id", account_id cannot be nil.')
  end

  invalid_properties
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



232
233
234
235
236
237
238
239
240
241
242
243
244
# File 'lib/zernio-sdk/models/create_inbox_conversation_request.rb', line 232

def to_hash
  hash = {}
  self.class.attribute_map.each_pair do |attr, param|
    value = self.send(attr)
    if value.nil?
      is_nullable = self.class.openapi_nullable.include?(attr)
      next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
    end

    hash[param] = _to_hash(value)
  end
  hash
end

#valid?Boolean

Check to see if the all the properties in the model are valid

Returns:

  • (Boolean)

    true if the model is valid



163
164
165
166
167
# File 'lib/zernio-sdk/models/create_inbox_conversation_request.rb', line 163

def valid?
  warn '[DEPRECATED] the `valid?` method is obsolete'
  return false if @account_id.nil?
  true
end