Sha256: 0dc200fe7637efcbd261e01a218dbcb6f5fb6823609df7e06197f052fc1c96f7
Contents?: true
Size: 1.28 KB
Versions: 1
Compression:
Stored size: 1.28 KB
Contents
# frozen_string_literal: true module Telnyx class PhoneNumber < APIResource include Telnyx::APIOperations::Save include Telnyx::APIOperations::Delete extend Telnyx::APIOperations::List extend Telnyx::APIOperations::NestedResource nested_resource_class_methods "voice", path: ["voice"], operations: %i[update list], instance_methods: { list: "voice" } nested_resource_class_methods "messaging", path: ["messaging"], operations: %i[update list], instance_methods: { list: "messaging" } nested_resource_class_methods "inbound_channel", path: ["inbound_channels"], operations: %i[update list] def update_messaging(opts) self.class.update_messaging(id, nil, opts) end def update_voice(opts) self.class.update_voice(id, nil, opts) end def update_inbound_channels=(val) self.class.update_inbound_channel(nil, nil, channels: val) end def inbound_channels self.class.list_inbound_channels(nil).channels end OBJECT_NAME = "phone_number".freeze end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
telnyx-0.1.0 | lib/telnyx/phone_number.rb |