## # This code was generated by # \ / _ _ _| _ _ # | (_)\/(_)(_|\/| |(/_ v1.0.0 # / / # # frozen_string_literal: true module Twilio module REST class Pricing class V2 < Version ## # Initialize the V2 version of Pricing def initialize(domain) super @version = 'v2' @voice = nil end ## # @return [Twilio::REST::Pricing::V2::VoiceContext] def voice @voice ||= VoiceList.new self end ## # Provide a user friendly representation def to_s '' end end end end end