Class: UntitledApi::ApiV1IncomingZendeskTicketsRequest1

Inherits:
BaseModel
  • Object
show all
Defined in:
lib/untitled_api/models/api_v1_incoming_zendesk_tickets_request1.rb

Overview

ApiV1IncomingZendeskTicketsRequest1 Model.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from BaseModel

#to_hash, #to_json

Constructor Details

#initialize(source = SKIP, id = SKIP, org_id = SKIP, created_at = SKIP, mwhen = SKIP, subject = SKIP, type = SKIP, status = SKIP, requester = SKIP, requester_email = SKIP, details = SKIP) ⇒ ApiV1IncomingZendeskTicketsRequest1

Returns a new instance of ApiV1IncomingZendeskTicketsRequest1.



95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
# File 'lib/untitled_api/models/api_v1_incoming_zendesk_tickets_request1.rb', line 95

def initialize(source = SKIP,
               id = SKIP,
               org_id = SKIP,
               created_at = SKIP,
               mwhen = SKIP,
               subject = SKIP,
               type = SKIP,
               status = SKIP,
               requester = SKIP,
               requester_email = SKIP,
               details = SKIP)
  @source = source unless source == SKIP
  @id = id unless id == SKIP
  @org_id = org_id unless org_id == SKIP
  @created_at = created_at unless created_at == SKIP
  @mwhen = mwhen unless mwhen == SKIP
  @subject = subject unless subject == SKIP
  @type = type unless type == SKIP
  @status = status unless status == SKIP
  @requester = requester unless requester == SKIP
  @requester_email = requester_email unless requester_email == SKIP
  @details = details unless details == SKIP
end

Instance Attribute Details

#created_atString

TODO: Write general description for this method

Returns:

  • (String)


26
27
28
# File 'lib/untitled_api/models/api_v1_incoming_zendesk_tickets_request1.rb', line 26

def created_at
  @created_at
end

#detailsString

TODO: Write general description for this method

Returns:

  • (String)


54
55
56
# File 'lib/untitled_api/models/api_v1_incoming_zendesk_tickets_request1.rb', line 54

def details
  @details
end

#idString

TODO: Write general description for this method

Returns:

  • (String)


18
19
20
# File 'lib/untitled_api/models/api_v1_incoming_zendesk_tickets_request1.rb', line 18

def id
  @id
end

#mwhenString

TODO: Write general description for this method

Returns:

  • (String)


30
31
32
# File 'lib/untitled_api/models/api_v1_incoming_zendesk_tickets_request1.rb', line 30

def mwhen
  @mwhen
end

#org_idString

TODO: Write general description for this method

Returns:

  • (String)


22
23
24
# File 'lib/untitled_api/models/api_v1_incoming_zendesk_tickets_request1.rb', line 22

def org_id
  @org_id
end

#requesterString

TODO: Write general description for this method

Returns:

  • (String)


46
47
48
# File 'lib/untitled_api/models/api_v1_incoming_zendesk_tickets_request1.rb', line 46

def requester
  @requester
end

#requester_emailString

TODO: Write general description for this method

Returns:

  • (String)


50
51
52
# File 'lib/untitled_api/models/api_v1_incoming_zendesk_tickets_request1.rb', line 50

def requester_email
  @requester_email
end

#sourceString

TODO: Write general description for this method

Returns:

  • (String)


14
15
16
# File 'lib/untitled_api/models/api_v1_incoming_zendesk_tickets_request1.rb', line 14

def source
  @source
end

#statusString

TODO: Write general description for this method

Returns:

  • (String)


42
43
44
# File 'lib/untitled_api/models/api_v1_incoming_zendesk_tickets_request1.rb', line 42

def status
  @status
end

#subjectString

TODO: Write general description for this method

Returns:

  • (String)


34
35
36
# File 'lib/untitled_api/models/api_v1_incoming_zendesk_tickets_request1.rb', line 34

def subject
  @subject
end

#typeString

TODO: Write general description for this method

Returns:

  • (String)


38
39
40
# File 'lib/untitled_api/models/api_v1_incoming_zendesk_tickets_request1.rb', line 38

def type
  @type
end

Class Method Details

.from_hash(hash) ⇒ Object

Creates an instance of the object from a hash.



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
148
149
# File 'lib/untitled_api/models/api_v1_incoming_zendesk_tickets_request1.rb', line 120

def self.from_hash(hash)
  return nil unless hash

  # Extract variables from the hash.
  source = hash.key?('source') ? hash['source'] : SKIP
  id = hash.key?('id') ? hash['id'] : SKIP
  org_id = hash.key?('org_id') ? hash['org_id'] : SKIP
  created_at = hash.key?('created_at') ? hash['created_at'] : SKIP
  mwhen = hash.key?('When') ? hash['When'] : SKIP
  subject = hash.key?('subject') ? hash['subject'] : SKIP
  type = hash.key?('type') ? hash['type'] : SKIP
  status = hash.key?('status') ? hash['status'] : SKIP
  requester = hash.key?('requester') ? hash['requester'] : SKIP
  requester_email =
    hash.key?('requester_email') ? hash['requester_email'] : SKIP
  details = hash.key?('details') ? hash['details'] : SKIP

  # Create object from extracted values.
  ApiV1IncomingZendeskTicketsRequest1.new(source,
                                          id,
                                          org_id,
                                          created_at,
                                          mwhen,
                                          subject,
                                          type,
                                          status,
                                          requester,
                                          requester_email,
                                          details)
end

.namesObject

A mapping from model property names to API property names.



57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# File 'lib/untitled_api/models/api_v1_incoming_zendesk_tickets_request1.rb', line 57

def self.names
  @_hash = {} if @_hash.nil?
  @_hash['source'] = 'source'
  @_hash['id'] = 'id'
  @_hash['org_id'] = 'org_id'
  @_hash['created_at'] = 'created_at'
  @_hash['mwhen'] = 'When'
  @_hash['subject'] = 'subject'
  @_hash['type'] = 'type'
  @_hash['status'] = 'status'
  @_hash['requester'] = 'requester'
  @_hash['requester_email'] = 'requester_email'
  @_hash['details'] = 'details'
  @_hash
end

.nullablesObject

An array for nullable fields



91
92
93
# File 'lib/untitled_api/models/api_v1_incoming_zendesk_tickets_request1.rb', line 91

def self.nullables
  []
end

.optionalsObject

An array for optional fields



74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
# File 'lib/untitled_api/models/api_v1_incoming_zendesk_tickets_request1.rb', line 74

def self.optionals
  %w[
    source
    id
    org_id
    created_at
    mwhen
    subject
    type
    status
    requester
    requester_email
    details
  ]
end