class RingCentralSdk::REST::Messages

Messages is a wrapper helper class

Attributes

fax[R]
sms[R]

Public Class Methods

new(client) click to toggle source
# File lib/ringcentral_sdk/rest/messages.rb, line 8
def initialize(client)
  @client = client
  @sms = RingCentralSdk::REST::MessagesSMS.new client
  @fax = RingCentralSdk::REST::MessagesFax.new client
end