Class: Appwrite::Models::Message
- Inherits:
-
Object
- Object
- Appwrite::Models::Message
- Defined in:
- lib/appwrite/models/message.rb
Instance Attribute Summary collapse
-
#created_at ⇒ Object
readonly
Returns the value of attribute created_at.
-
#data ⇒ Object
readonly
Returns the value of attribute data.
-
#delivered_at ⇒ Object
readonly
Returns the value of attribute delivered_at.
-
#delivered_total ⇒ Object
readonly
Returns the value of attribute delivered_total.
-
#delivery_errors ⇒ Object
readonly
Returns the value of attribute delivery_errors.
-
#id ⇒ Object
readonly
Returns the value of attribute id.
-
#provider_type ⇒ Object
readonly
Returns the value of attribute provider_type.
-
#scheduled_at ⇒ Object
readonly
Returns the value of attribute scheduled_at.
-
#status ⇒ Object
readonly
Returns the value of attribute status.
-
#targets ⇒ Object
readonly
Returns the value of attribute targets.
-
#topics ⇒ Object
readonly
Returns the value of attribute topics.
-
#updated_at ⇒ Object
readonly
Returns the value of attribute updated_at.
-
#users ⇒ Object
readonly
Returns the value of attribute users.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(id:, created_at:, updated_at:, provider_type:, topics:, users:, targets:, scheduled_at:, delivered_at:, delivery_errors:, delivered_total:, data:, status:) ⇒ Message
constructor
A new instance of Message.
- #to_map ⇒ Object
Constructor Details
#initialize(id:, created_at:, updated_at:, provider_type:, topics:, users:, targets:, scheduled_at:, delivered_at:, delivery_errors:, delivered_total:, data:, status:) ⇒ Message
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 |
# File 'lib/appwrite/models/message.rb', line 20 def initialize( id:, created_at:, updated_at:, provider_type:, topics:, users:, targets:, scheduled_at: , delivered_at: , delivery_errors: , delivered_total:, data:, status: ) @id = id @created_at = created_at @updated_at = updated_at @provider_type = provider_type @topics = topics @users = users @targets = targets @scheduled_at = scheduled_at @delivered_at = delivered_at @delivery_errors = delivery_errors @delivered_total = delivered_total @data = data @status = validate_status(status) end |
Instance Attribute Details
#created_at ⇒ Object (readonly)
Returns the value of attribute created_at.
7 8 9 |
# File 'lib/appwrite/models/message.rb', line 7 def created_at @created_at end |
#data ⇒ Object (readonly)
Returns the value of attribute data.
17 18 19 |
# File 'lib/appwrite/models/message.rb', line 17 def data @data end |
#delivered_at ⇒ Object (readonly)
Returns the value of attribute delivered_at.
14 15 16 |
# File 'lib/appwrite/models/message.rb', line 14 def delivered_at @delivered_at end |
#delivered_total ⇒ Object (readonly)
Returns the value of attribute delivered_total.
16 17 18 |
# File 'lib/appwrite/models/message.rb', line 16 def delivered_total @delivered_total end |
#delivery_errors ⇒ Object (readonly)
Returns the value of attribute delivery_errors.
15 16 17 |
# File 'lib/appwrite/models/message.rb', line 15 def delivery_errors @delivery_errors end |
#id ⇒ Object (readonly)
Returns the value of attribute id.
6 7 8 |
# File 'lib/appwrite/models/message.rb', line 6 def id @id end |
#provider_type ⇒ Object (readonly)
Returns the value of attribute provider_type.
9 10 11 |
# File 'lib/appwrite/models/message.rb', line 9 def provider_type @provider_type end |
#scheduled_at ⇒ Object (readonly)
Returns the value of attribute scheduled_at.
13 14 15 |
# File 'lib/appwrite/models/message.rb', line 13 def scheduled_at @scheduled_at end |
#status ⇒ Object (readonly)
Returns the value of attribute status.
18 19 20 |
# File 'lib/appwrite/models/message.rb', line 18 def status @status end |
#targets ⇒ Object (readonly)
Returns the value of attribute targets.
12 13 14 |
# File 'lib/appwrite/models/message.rb', line 12 def targets @targets end |
#topics ⇒ Object (readonly)
Returns the value of attribute topics.
10 11 12 |
# File 'lib/appwrite/models/message.rb', line 10 def topics @topics end |
#updated_at ⇒ Object (readonly)
Returns the value of attribute updated_at.
8 9 10 |
# File 'lib/appwrite/models/message.rb', line 8 def updated_at @updated_at end |
#users ⇒ Object (readonly)
Returns the value of attribute users.
11 12 13 |
# File 'lib/appwrite/models/message.rb', line 11 def users @users end |
Class Method Details
.from(map:) ⇒ Object
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 |
# File 'lib/appwrite/models/message.rb', line 50 def self.from(map:) Message.new( id: map["$id"], created_at: map["$createdAt"], updated_at: map["$updatedAt"], provider_type: map["providerType"], topics: map["topics"], users: map["users"], targets: map["targets"], scheduled_at: map["scheduledAt"], delivered_at: map["deliveredAt"], delivery_errors: map["deliveryErrors"], delivered_total: map["deliveredTotal"], data: map["data"], status: map["status"] ) end |
Instance Method Details
#to_map ⇒ Object
68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 |
# File 'lib/appwrite/models/message.rb', line 68 def to_map { "$id": @id, "$createdAt": @created_at, "$updatedAt": @updated_at, "providerType": @provider_type, "topics": @topics, "users": @users, "targets": @targets, "scheduledAt": @scheduled_at, "deliveredAt": @delivered_at, "deliveryErrors": @delivery_errors, "deliveredTotal": @delivered_total, "data": @data, "status": @status } end |