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