Skip to content

Commit

Permalink
maskingChanges
Browse files Browse the repository at this point in the history
  • Loading branch information
ajay-plivo committed May 6, 2024
1 parent 5d53cad commit 3e2cb1e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/plivo/resources/maskingsession.rb
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def to_s
created_time: @created_time,
modified_time: @modified_time,
expiry_time: @expiry_time,
duration: @duration
duration: @duration,
amount: @amount,
call_time_limit: @call_time_limit,
ring_timeout: @ring_timeout,
Expand Down
3 changes: 2 additions & 1 deletion lib/plivo/rest_client.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class RestClient < BaseClient
attr_reader :messages, :account, :subaccounts, :recordings
attr_reader :pricings, :numbers, :calls, :conferences
attr_reader :token
attr_reader :phone_numbers, :applications, :endpoints, :multipartycalls
attr_reader :phone_numbers, :applications, :endpoints, :multipartycalls, :maskingsession
attr_reader :addresses, :identities
attr_reader :call_feedback
attr_reader :powerpacks
Expand Down Expand Up @@ -56,6 +56,7 @@ def configure_interfaces
@calls = Resources::CallInterface.new(self)
@token = Resources::TokenInterface.new(self)
@endpoints = Resources::EndpointInterface.new(self)
@maskingsession = Resources::MaskingSessionInterface.new(self)
@applications = Resources::ApplicationInterface.new(self)
@addresses = Resources::AddressInterface.new(self)
@identities = Resources::IdentityInterface.new(self)
Expand Down

0 comments on commit 3e2cb1e

Please sign in to comment.