47
48
49
50
51
52
53
54
55
56
57
58
|
# File 'lib/qismo/webhook_requests/on_custom_channel_message_sent.rb', line 47
class Message < Qismo::Object
attribute? :comment_before_id, Types::Int.optional
attribute? :created_at, Types::String.optional
attribute? :id, Types::Int.optional
attribute? :payload, Types::Hash.optional
attribute? :text, Types::String.optional
attribute? :timestamp, Types::String.optional
attribute? :type, Types::String.optional
attribute? :unique_temp_id, Types::String.optional
attribute? :unix_nano_timestamp, Types::String.optional
attribute? :unix_timestamp, Types::String.optional
end
|