Sha256: 6a373381e0166fe0750f03b2826bdbfeed516ce7213bb1ed3edd9982828162bd
Contents?: true
Size: 842 Bytes
Versions: 4
Compression:
Stored size: 842 Bytes
Contents
module CallRecorderApi module Model class NotifyUserRequest attr_accessor :api_key attr_accessor :title attr_accessor :body attr_accessor :device_type def initialize( api_key, title, body, device_type ) @api_key = api_key @title = title @body = body @device_type = device_type end def to_s 'NotifyUserRequest{' + 'api_key=' + api_key.to_s + ', ' + 'title=' + title.to_s + ', ' + 'body=' + body.to_s + ', ' + 'device_type=' + device_type.to_s + '}' end end end end
Version data entries
4 entries across 4 versions & 1 rubygems