diff --git a/lib/twilio-ruby/rest/client.rb b/lib/twilio-ruby/rest/client.rb index d64ebdf26..9a3adbcd9 100644 --- a/lib/twilio-ruby/rest/client.rb +++ b/lib/twilio-ruby/rest/client.rb @@ -82,10 +82,6 @@ def lookups @lookups ||= Lookups.new self end ## - # Access the Media Twilio Domain - def media - @media ||= Media.new self - end ## # Access the Messaging Twilio Domain def messaging @@ -219,7 +215,7 @@ def authorized_connect_apps(connectAppSid=:unset) def available_phone_numbers(countryCode=:unset) self.api.v2010.account.available_phone_numbers(countryCode) end - + ## # @param [string] sid The SID of the Call resource to fetch. @@ -268,8 +264,8 @@ def keys(sid=:unset) def messages(sid=:unset) self.api.v2010.account.messages(sid) end - - + + ## # @param [string] sid The Twilio-provided string that uniquely identifies the Notification resource to fetch. @@ -317,8 +313,8 @@ def short_codes(sid=:unset) def signing_keys(sid=:unset) self.api.v2010.account.signing_keys(sid) end - - + + ## # @param [string] sid The Twilio-provided string that uniquely identifies the Transcription resource to fetch. @@ -327,8 +323,8 @@ def signing_keys(sid=:unset) def transcriptions(sid=:unset) self.api.v2010.account.transcriptions(sid) end - - + + ## # Provide a user friendly representation diff --git a/lib/twilio-ruby/rest/media.rb b/lib/twilio-ruby/rest/media.rb deleted file mode 100644 index 801dce0ed..000000000 --- a/lib/twilio-ruby/rest/media.rb +++ /dev/null @@ -1,6 +0,0 @@ -module Twilio - module REST - class Media < MediaBase; - end - end -end diff --git a/lib/twilio-ruby/rest/media/v1.rb b/lib/twilio-ruby/rest/media/v1.rb deleted file mode 100644 index c915066ab..000000000 --- a/lib/twilio-ruby/rest/media/v1.rb +++ /dev/null @@ -1,79 +0,0 @@ -## -# This code was generated by -# ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __ -# | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/ -# | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \ -# -# Twilio - Media -# This is the public Twilio REST API. -# -# NOTE: This class is auto generated by OpenAPI Generator. -# https://openapi-generator.tech -# Do not edit the class manually. -# - -module Twilio - module REST - class Media - class V1 < Version - ## - # Initialize the V1 version of Media - def initialize(domain) - super - @version = 'v1' - @media_processor = nil - @media_recording = nil - @player_streamer = nil - end - - ## - # @param [String] sid The SID of the MediaProcessor resource to fetch. - # @return [Twilio::REST::Media::V1::MediaProcessorContext] if sid was passed. - # @return [Twilio::REST::Media::V1::MediaProcessorList] - def media_processor(sid=:unset) - if sid.nil? - raise ArgumentError, 'sid cannot be nil' - end - if sid == :unset - @media_processor ||= MediaProcessorList.new self - else - MediaProcessorContext.new(self, sid) - end - end - ## - # @param [String] sid The SID of the MediaRecording resource to fetch. - # @return [Twilio::REST::Media::V1::MediaRecordingContext] if sid was passed. - # @return [Twilio::REST::Media::V1::MediaRecordingList] - def media_recording(sid=:unset) - if sid.nil? - raise ArgumentError, 'sid cannot be nil' - end - if sid == :unset - @media_recording ||= MediaRecordingList.new self - else - MediaRecordingContext.new(self, sid) - end - end - ## - # @param [String] sid The SID of the PlayerStreamer resource to fetch. - # @return [Twilio::REST::Media::V1::PlayerStreamerContext] if sid was passed. - # @return [Twilio::REST::Media::V1::PlayerStreamerList] - def player_streamer(sid=:unset) - if sid.nil? - raise ArgumentError, 'sid cannot be nil' - end - if sid == :unset - @player_streamer ||= PlayerStreamerList.new self - else - PlayerStreamerContext.new(self, sid) - end - end - ## - # Provide a user friendly representation - def to_s - ''; - end - end - end - end -end diff --git a/lib/twilio-ruby/rest/media/v1/media_processor.rb b/lib/twilio-ruby/rest/media/v1/media_processor.rb deleted file mode 100644 index c14dd41f2..000000000 --- a/lib/twilio-ruby/rest/media/v1/media_processor.rb +++ /dev/null @@ -1,424 +0,0 @@ -## -# This code was generated by -# ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __ -# | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/ -# | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \ -# -# Twilio - Media -# This is the public Twilio REST API. -# -# NOTE: This class is auto generated by OpenAPI Generator. -# https://openapi-generator.tech -# Do not edit the class manually. -# - - -module Twilio - module REST - class Media < MediaBase - class V1 < Version - class MediaProcessorList < ListResource - - ## - # Initialize the MediaProcessorList - # @param [Version] version Version that contains the resource - # @return [MediaProcessorList] MediaProcessorList - def initialize(version) - super(version) - # Path Solution - @solution = { } - @uri = "/MediaProcessors" - - end - ## - # Create the MediaProcessorInstance - # @param [String] extension The [Media Extension](/docs/live/media-extensions-overview) name or URL. Ex: `video-composer-v2` - # @param [String] extension_context The context of the Media Extension, represented as a JSON dictionary. See the documentation for the specific [Media Extension](/docs/live/media-extensions-overview) you are using for more information about the context to send. - # @param [Object] extension_environment User-defined environment variables for the Media Extension, represented as a JSON dictionary of key/value strings. See the documentation for the specific [Media Extension](/docs/live/media-extensions-overview) you are using for more information about whether you need to provide this. - # @param [String] status_callback The URL to which Twilio will send asynchronous webhook requests for every MediaProcessor event. See [Status Callbacks](/docs/live/api/status-callbacks) for details. - # @param [String] status_callback_method The HTTP method Twilio should use to call the `status_callback` URL. Can be `POST` or `GET` and the default is `POST`. - # @param [String] max_duration The maximum time, in seconds, that the MediaProcessor can run before automatically ends. The default value is 300 seconds, and the maximum value is 90000 seconds. Once this maximum duration is reached, Twilio will end the MediaProcessor, regardless of whether media is still streaming. - # @return [MediaProcessorInstance] Created MediaProcessorInstance - def create( - extension: nil, - extension_context: nil, - extension_environment: :unset, - status_callback: :unset, - status_callback_method: :unset, - max_duration: :unset - ) - - data = Twilio::Values.of({ - 'Extension' => extension, - 'ExtensionContext' => extension_context, - 'ExtensionEnvironment' => Twilio.serialize_object(extension_environment), - 'StatusCallback' => status_callback, - 'StatusCallbackMethod' => status_callback_method, - 'MaxDuration' => max_duration, - }) - - - payload = @version.create('POST', @uri, data: data) - MediaProcessorInstance.new( - @version, - payload, - ) - end - - - ## - # Lists MediaProcessorInstance records from the API as a list. - # Unlike stream(), this operation is eager and will load `limit` records into - # memory before returning. - # @param [Order] order The sort order of the list by `date_created`. Can be: `asc` (ascending) or `desc` (descending) with `desc` as the default. - # @param [Status] status Status to filter by, with possible values `started`, `ended` or `failed`. - # @param [Integer] limit Upper limit for the number of records to return. stream() - # guarantees to never return more than limit. Default is no limit - # @param [Integer] page_size Number of records to fetch per request, when - # not set will use the default value of 50 records. If no page_size is defined - # but a limit is defined, stream() will attempt to read the limit with the most - # efficient page size, i.e. min(limit, 1000) - # @return [Array] Array of up to limit results - def list(order: :unset, status: :unset, limit: nil, page_size: nil) - self.stream( - order: order, - status: status, - limit: limit, - page_size: page_size - ).entries - end - - ## - # Streams Instance records from the API as an Enumerable. - # This operation lazily loads records as efficiently as possible until the limit - # is reached. - # @param [Order] order The sort order of the list by `date_created`. Can be: `asc` (ascending) or `desc` (descending) with `desc` as the default. - # @param [Status] status Status to filter by, with possible values `started`, `ended` or `failed`. - # @param [Integer] limit Upper limit for the number of records to return. stream() - # guarantees to never return more than limit. Default is no limit - # @param [Integer] page_size Number of records to fetch per request, when - # not set will use the default value of 50 records. If no page_size is defined - # but a limit is defined, stream() will attempt to read the limit with the most - # efficient page size, i.e. min(limit, 1000) - # @return [Enumerable] Enumerable that will yield up to limit results - def stream(order: :unset, status: :unset, limit: nil, page_size: nil) - limits = @version.read_limits(limit, page_size) - - page = self.page( - order: order, - status: status, - page_size: limits[:page_size], ) - - @version.stream(page, limit: limits[:limit], page_limit: limits[:page_limit]) - end - - ## - # When passed a block, yields MediaProcessorInstance records from the API. - # This operation lazily loads records as efficiently as possible until the limit - # is reached. - def each - limits = @version.read_limits - - page = self.page(page_size: limits[:page_size], ) - - @version.stream(page, - limit: limits[:limit], - page_limit: limits[:page_limit]).each {|x| yield x} - end - - ## - # Retrieve a single page of MediaProcessorInstance records from the API. - # Request is executed immediately. - # @param [Order] order The sort order of the list by `date_created`. Can be: `asc` (ascending) or `desc` (descending) with `desc` as the default. - # @param [Status] status Status to filter by, with possible values `started`, `ended` or `failed`. - # @param [String] page_token PageToken provided by the API - # @param [Integer] page_number Page Number, this value is simply for client state - # @param [Integer] page_size Number of records to return, defaults to 50 - # @return [Page] Page of MediaProcessorInstance - def page(order: :unset, status: :unset, page_token: :unset, page_number: :unset, page_size: :unset) - params = Twilio::Values.of({ - 'Order' => order, - 'Status' => status, - 'PageToken' => page_token, - 'Page' => page_number, - 'PageSize' => page_size, - }) - - response = @version.page('GET', @uri, params: params) - - MediaProcessorPage.new(@version, response, @solution) - end - - ## - # Retrieve a single page of MediaProcessorInstance records from the API. - # Request is executed immediately. - # @param [String] target_url API-generated URL for the requested results page - # @return [Page] Page of MediaProcessorInstance - def get_page(target_url) - response = @version.domain.request( - 'GET', - target_url - ) - MediaProcessorPage.new(@version, response, @solution) - end - - - - # Provide a user friendly representation - def to_s - '#' - end - end - - - class MediaProcessorContext < InstanceContext - ## - # Initialize the MediaProcessorContext - # @param [Version] version Version that contains the resource - # @param [String] sid The SID of the MediaProcessor resource to update. - # @return [MediaProcessorContext] MediaProcessorContext - def initialize(version, sid) - super(version) - - # Path Solution - @solution = { sid: sid, } - @uri = "/MediaProcessors/#{@solution[:sid]}" - - - end - ## - # Fetch the MediaProcessorInstance - # @return [MediaProcessorInstance] Fetched MediaProcessorInstance - def fetch - - - payload = @version.fetch('GET', @uri) - MediaProcessorInstance.new( - @version, - payload, - sid: @solution[:sid], - ) - end - - ## - # Update the MediaProcessorInstance - # @param [UpdateStatus] status - # @return [MediaProcessorInstance] Updated MediaProcessorInstance - def update( - status: nil - ) - - data = Twilio::Values.of({ - 'Status' => status, - }) - - - payload = @version.update('POST', @uri, data: data) - MediaProcessorInstance.new( - @version, - payload, - sid: @solution[:sid], - ) - end - - - ## - # Provide a user friendly representation - def to_s - context = @solution.map{|k, v| "#{k}: #{v}"}.join(',') - "#" - end - - ## - # Provide a detailed, user friendly representation - def inspect - context = @solution.map{|k, v| "#{k}: #{v}"}.join(',') - "#" - end - end - - class MediaProcessorPage < Page - ## - # Initialize the MediaProcessorPage - # @param [Version] version Version that contains the resource - # @param [Response] response Response from the API - # @param [Hash] solution Path solution for the resource - # @return [MediaProcessorPage] MediaProcessorPage - def initialize(version, response, solution) - super(version, response) - - # Path Solution - @solution = solution - end - - ## - # Build an instance of MediaProcessorInstance - # @param [Hash] payload Payload response from the API - # @return [MediaProcessorInstance] MediaProcessorInstance - def get_instance(payload) - MediaProcessorInstance.new(@version, payload) - end - - ## - # Provide a user friendly representation - def to_s - '' - end - end - class MediaProcessorInstance < InstanceResource - ## - # Initialize the MediaProcessorInstance - # @param [Version] version Version that contains the resource - # @param [Hash] payload payload that contains response from Twilio - # @param [String] account_sid The SID of the - # {Account}[https://www.twilio.com/docs/iam/api/account] that created this MediaProcessor - # resource. - # @param [String] sid The SID of the Call resource to fetch. - # @return [MediaProcessorInstance] MediaProcessorInstance - def initialize(version, payload , sid: nil) - super(version) - - # Marshaled Properties - @properties = { - 'account_sid' => payload['account_sid'], - 'sid' => payload['sid'], - 'date_created' => Twilio.deserialize_iso8601_datetime(payload['date_created']), - 'date_updated' => Twilio.deserialize_iso8601_datetime(payload['date_updated']), - 'extension' => payload['extension'], - 'extension_context' => payload['extension_context'], - 'status' => payload['status'], - 'url' => payload['url'], - 'ended_reason' => payload['ended_reason'], - 'status_callback' => payload['status_callback'], - 'status_callback_method' => payload['status_callback_method'], - 'max_duration' => payload['max_duration'] == nil ? payload['max_duration'] : payload['max_duration'].to_i, - } - - # Context - @instance_context = nil - @params = { 'sid' => sid || @properties['sid'] , } - end - - ## - # Generate an instance context for the instance, the context is capable of - # performing various actions. All instance actions are proxied to the context - # @return [MediaProcessorContext] CallContext for this CallInstance - def context - unless @instance_context - @instance_context = MediaProcessorContext.new(@version , @params['sid']) - end - @instance_context - end - - ## - # @return [String] The SID of the [Account](https://www.twilio.com/docs/iam/api/account) that created the MediaProcessor resource. - def account_sid - @properties['account_sid'] - end - - ## - # @return [String] The unique string generated to identify the MediaProcessor resource. - def sid - @properties['sid'] - end - - ## - # @return [Time] The date and time in GMT when the resource was created specified in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format. - def date_created - @properties['date_created'] - end - - ## - # @return [Time] The date and time in GMT when the resource was last updated specified in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format. - def date_updated - @properties['date_updated'] - end - - ## - # @return [String] The [Media Extension](/docs/live/media-extensions-overview) name or URL. Ex: `video-composer-v2` - def extension - @properties['extension'] - end - - ## - # @return [String] The context of the Media Extension, represented as a JSON dictionary. See the documentation for the specific [Media Extension](/docs/live/media-extensions-overview) you are using for more information about the context to send. - def extension_context - @properties['extension_context'] - end - - ## - # @return [Status] - def status - @properties['status'] - end - - ## - # @return [String] The absolute URL of the resource. - def url - @properties['url'] - end - - ## - # @return [String] The reason why a MediaProcessor ended. When a MediaProcessor is in progress, will be `null`. When a MediaProcessor is completed, can be `ended-via-api`, `max-duration-exceeded`, `error-loading-extension`, `error-streaming-media` or `internal-service-error`. See [ended reasons](/docs/live/api/mediaprocessors#mediaprocessor-ended-reason-values) for more details. - def ended_reason - @properties['ended_reason'] - end - - ## - # @return [String] The URL to which Twilio will send asynchronous webhook requests for every MediaProcessor event. See [Status Callbacks](/docs/live/api/status-callbacks) for details. - def status_callback - @properties['status_callback'] - end - - ## - # @return [String] The HTTP method Twilio should use to call the `status_callback` URL. Can be `POST` or `GET` and the default is `POST`. - def status_callback_method - @properties['status_callback_method'] - end - - ## - # @return [String] The maximum time, in seconds, that the MediaProcessor can run before automatically ends. The default value is 300 seconds, and the maximum value is 90000 seconds. Once this maximum duration is reached, Twilio will end the MediaProcessor, regardless of whether media is still streaming. - def max_duration - @properties['max_duration'] - end - - ## - # Fetch the MediaProcessorInstance - # @return [MediaProcessorInstance] Fetched MediaProcessorInstance - def fetch - - context.fetch - end - - ## - # Update the MediaProcessorInstance - # @param [UpdateStatus] status - # @return [MediaProcessorInstance] Updated MediaProcessorInstance - def update( - status: nil - ) - - context.update( - status: status, - ) - end - - ## - # Provide a user friendly representation - def to_s - values = @params.map{|k, v| "#{k}: #{v}"}.join(" ") - "" - end - - ## - # Provide a detailed, user friendly representation - def inspect - values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ") - "" - end - end - - end - end - end -end diff --git a/lib/twilio-ruby/rest/media/v1/media_recording.rb b/lib/twilio-ruby/rest/media/v1/media_recording.rb deleted file mode 100644 index 8fa6c4fe9..000000000 --- a/lib/twilio-ruby/rest/media/v1/media_recording.rb +++ /dev/null @@ -1,407 +0,0 @@ -## -# This code was generated by -# ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __ -# | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/ -# | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \ -# -# Twilio - Media -# This is the public Twilio REST API. -# -# NOTE: This class is auto generated by OpenAPI Generator. -# https://openapi-generator.tech -# Do not edit the class manually. -# - - -module Twilio - module REST - class Media < MediaBase - class V1 < Version - class MediaRecordingList < ListResource - - ## - # Initialize the MediaRecordingList - # @param [Version] version Version that contains the resource - # @return [MediaRecordingList] MediaRecordingList - def initialize(version) - super(version) - # Path Solution - @solution = { } - @uri = "/MediaRecordings" - - end - - ## - # Lists MediaRecordingInstance records from the API as a list. - # Unlike stream(), this operation is eager and will load `limit` records into - # memory before returning. - # @param [Order] order The sort order of the list by `date_created`. Can be: `asc` (ascending) or `desc` (descending) with `desc` as the default. - # @param [Status] status Status to filter by, with possible values `processing`, `completed`, `deleted`, or `failed`. - # @param [String] processor_sid SID of a MediaProcessor to filter by. - # @param [String] source_sid SID of a MediaRecording source to filter by. - # @param [Integer] limit Upper limit for the number of records to return. stream() - # guarantees to never return more than limit. Default is no limit - # @param [Integer] page_size Number of records to fetch per request, when - # not set will use the default value of 50 records. If no page_size is defined - # but a limit is defined, stream() will attempt to read the limit with the most - # efficient page size, i.e. min(limit, 1000) - # @return [Array] Array of up to limit results - def list(order: :unset, status: :unset, processor_sid: :unset, source_sid: :unset, limit: nil, page_size: nil) - self.stream( - order: order, - status: status, - processor_sid: processor_sid, - source_sid: source_sid, - limit: limit, - page_size: page_size - ).entries - end - - ## - # Streams Instance records from the API as an Enumerable. - # This operation lazily loads records as efficiently as possible until the limit - # is reached. - # @param [Order] order The sort order of the list by `date_created`. Can be: `asc` (ascending) or `desc` (descending) with `desc` as the default. - # @param [Status] status Status to filter by, with possible values `processing`, `completed`, `deleted`, or `failed`. - # @param [String] processor_sid SID of a MediaProcessor to filter by. - # @param [String] source_sid SID of a MediaRecording source to filter by. - # @param [Integer] limit Upper limit for the number of records to return. stream() - # guarantees to never return more than limit. Default is no limit - # @param [Integer] page_size Number of records to fetch per request, when - # not set will use the default value of 50 records. If no page_size is defined - # but a limit is defined, stream() will attempt to read the limit with the most - # efficient page size, i.e. min(limit, 1000) - # @return [Enumerable] Enumerable that will yield up to limit results - def stream(order: :unset, status: :unset, processor_sid: :unset, source_sid: :unset, limit: nil, page_size: nil) - limits = @version.read_limits(limit, page_size) - - page = self.page( - order: order, - status: status, - processor_sid: processor_sid, - source_sid: source_sid, - page_size: limits[:page_size], ) - - @version.stream(page, limit: limits[:limit], page_limit: limits[:page_limit]) - end - - ## - # When passed a block, yields MediaRecordingInstance records from the API. - # This operation lazily loads records as efficiently as possible until the limit - # is reached. - def each - limits = @version.read_limits - - page = self.page(page_size: limits[:page_size], ) - - @version.stream(page, - limit: limits[:limit], - page_limit: limits[:page_limit]).each {|x| yield x} - end - - ## - # Retrieve a single page of MediaRecordingInstance records from the API. - # Request is executed immediately. - # @param [Order] order The sort order of the list by `date_created`. Can be: `asc` (ascending) or `desc` (descending) with `desc` as the default. - # @param [Status] status Status to filter by, with possible values `processing`, `completed`, `deleted`, or `failed`. - # @param [String] processor_sid SID of a MediaProcessor to filter by. - # @param [String] source_sid SID of a MediaRecording source to filter by. - # @param [String] page_token PageToken provided by the API - # @param [Integer] page_number Page Number, this value is simply for client state - # @param [Integer] page_size Number of records to return, defaults to 50 - # @return [Page] Page of MediaRecordingInstance - def page(order: :unset, status: :unset, processor_sid: :unset, source_sid: :unset, page_token: :unset, page_number: :unset, page_size: :unset) - params = Twilio::Values.of({ - 'Order' => order, - 'Status' => status, - 'ProcessorSid' => processor_sid, - 'SourceSid' => source_sid, - 'PageToken' => page_token, - 'Page' => page_number, - 'PageSize' => page_size, - }) - - response = @version.page('GET', @uri, params: params) - - MediaRecordingPage.new(@version, response, @solution) - end - - ## - # Retrieve a single page of MediaRecordingInstance records from the API. - # Request is executed immediately. - # @param [String] target_url API-generated URL for the requested results page - # @return [Page] Page of MediaRecordingInstance - def get_page(target_url) - response = @version.domain.request( - 'GET', - target_url - ) - MediaRecordingPage.new(@version, response, @solution) - end - - - - # Provide a user friendly representation - def to_s - '#' - end - end - - - ## - #PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you currently do not have developer preview access, please contact help@twilio.com. - class MediaRecordingContext < InstanceContext - ## - # Initialize the MediaRecordingContext - # @param [Version] version Version that contains the resource - # @param [String] sid The SID of the MediaRecording resource to fetch. - # @return [MediaRecordingContext] MediaRecordingContext - def initialize(version, sid) - super(version) - - # Path Solution - @solution = { sid: sid, } - @uri = "/MediaRecordings/#{@solution[:sid]}" - - - end - ## - # Delete the MediaRecordingInstance - # @return [Boolean] True if delete succeeds, false otherwise - def delete - - - @version.delete('DELETE', @uri) - end - - ## - # Fetch the MediaRecordingInstance - # @return [MediaRecordingInstance] Fetched MediaRecordingInstance - def fetch - - - payload = @version.fetch('GET', @uri) - MediaRecordingInstance.new( - @version, - payload, - sid: @solution[:sid], - ) - end - - - ## - # Provide a user friendly representation - def to_s - context = @solution.map{|k, v| "#{k}: #{v}"}.join(',') - "#" - end - - ## - # Provide a detailed, user friendly representation - def inspect - context = @solution.map{|k, v| "#{k}: #{v}"}.join(',') - "#" - end - end - - class MediaRecordingPage < Page - ## - # Initialize the MediaRecordingPage - # @param [Version] version Version that contains the resource - # @param [Response] response Response from the API - # @param [Hash] solution Path solution for the resource - # @return [MediaRecordingPage] MediaRecordingPage - def initialize(version, response, solution) - super(version, response) - - # Path Solution - @solution = solution - end - - ## - # Build an instance of MediaRecordingInstance - # @param [Hash] payload Payload response from the API - # @return [MediaRecordingInstance] MediaRecordingInstance - def get_instance(payload) - MediaRecordingInstance.new(@version, payload) - end - - ## - # Provide a user friendly representation - def to_s - '' - end - end - class MediaRecordingInstance < InstanceResource - ## - # Initialize the MediaRecordingInstance - # @param [Version] version Version that contains the resource - # @param [Hash] payload payload that contains response from Twilio - # @param [String] account_sid The SID of the - # {Account}[https://www.twilio.com/docs/iam/api/account] that created this MediaRecording - # resource. - # @param [String] sid The SID of the Call resource to fetch. - # @return [MediaRecordingInstance] MediaRecordingInstance - def initialize(version, payload , sid: nil) - super(version) - - # Marshaled Properties - @properties = { - 'account_sid' => payload['account_sid'], - 'date_created' => Twilio.deserialize_iso8601_datetime(payload['date_created']), - 'date_updated' => Twilio.deserialize_iso8601_datetime(payload['date_updated']), - 'duration' => payload['duration'] == nil ? payload['duration'] : payload['duration'].to_i, - 'format' => payload['format'], - 'links' => payload['links'], - 'processor_sid' => payload['processor_sid'], - 'resolution' => payload['resolution'], - 'source_sid' => payload['source_sid'], - 'sid' => payload['sid'], - 'media_size' => payload['media_size'], - 'status' => payload['status'], - 'status_callback' => payload['status_callback'], - 'status_callback_method' => payload['status_callback_method'], - 'url' => payload['url'], - } - - # Context - @instance_context = nil - @params = { 'sid' => sid || @properties['sid'] , } - end - - ## - # Generate an instance context for the instance, the context is capable of - # performing various actions. All instance actions are proxied to the context - # @return [MediaRecordingContext] CallContext for this CallInstance - def context - unless @instance_context - @instance_context = MediaRecordingContext.new(@version , @params['sid']) - end - @instance_context - end - - ## - # @return [String] The SID of the [Account](https://www.twilio.com/docs/iam/api/account) that created the MediaRecording resource. - def account_sid - @properties['account_sid'] - end - - ## - # @return [Time] The date and time in GMT when the resource was created specified in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format. - def date_created - @properties['date_created'] - end - - ## - # @return [Time] The date and time in GMT when the resource was last updated specified in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format. - def date_updated - @properties['date_updated'] - end - - ## - # @return [String] The duration of the MediaRecording in seconds. - def duration - @properties['duration'] - end - - ## - # @return [Format] - def format - @properties['format'] - end - - ## - # @return [Hash] The URLs of related resources. - def links - @properties['links'] - end - - ## - # @return [String] The SID of the MediaProcessor resource which produced the MediaRecording. - def processor_sid - @properties['processor_sid'] - end - - ## - # @return [String] The dimensions of the video image in pixels expressed as columns (width) and rows (height). - def resolution - @properties['resolution'] - end - - ## - # @return [String] The SID of the resource that generated the original media track(s) of the MediaRecording. - def source_sid - @properties['source_sid'] - end - - ## - # @return [String] The unique string generated to identify the MediaRecording resource. - def sid - @properties['sid'] - end - - ## - # @return [String] The size of the recording media in bytes. - def media_size - @properties['media_size'] - end - - ## - # @return [Status] - def status - @properties['status'] - end - - ## - # @return [String] The URL to which Twilio will send asynchronous webhook requests for every MediaRecording event. See [Status Callbacks](/docs/live/api/status-callbacks) for more details. - def status_callback - @properties['status_callback'] - end - - ## - # @return [String] The HTTP method Twilio should use to call the `status_callback` URL. Can be `POST` or `GET` and the default is `POST`. - def status_callback_method - @properties['status_callback_method'] - end - - ## - # @return [String] The absolute URL of the resource. - def url - @properties['url'] - end - - ## - # Delete the MediaRecordingInstance - # @return [Boolean] True if delete succeeds, false otherwise - def delete - - context.delete - end - - ## - # Fetch the MediaRecordingInstance - # @return [MediaRecordingInstance] Fetched MediaRecordingInstance - def fetch - - context.fetch - end - - ## - # Provide a user friendly representation - def to_s - values = @params.map{|k, v| "#{k}: #{v}"}.join(" ") - "" - end - - ## - # Provide a detailed, user friendly representation - def inspect - values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ") - "" - end - end - - end - end - end -end diff --git a/lib/twilio-ruby/rest/media/v1/player_streamer.rb b/lib/twilio-ruby/rest/media/v1/player_streamer.rb deleted file mode 100644 index 66a30d92a..000000000 --- a/lib/twilio-ruby/rest/media/v1/player_streamer.rb +++ /dev/null @@ -1,436 +0,0 @@ -## -# This code was generated by -# ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __ -# | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/ -# | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \ -# -# Twilio - Media -# This is the public Twilio REST API. -# -# NOTE: This class is auto generated by OpenAPI Generator. -# https://openapi-generator.tech -# Do not edit the class manually. -# - - -module Twilio - module REST - class Media < MediaBase - class V1 < Version - class PlayerStreamerList < ListResource - - ## - # Initialize the PlayerStreamerList - # @param [Version] version Version that contains the resource - # @return [PlayerStreamerList] PlayerStreamerList - def initialize(version) - super(version) - # Path Solution - @solution = { } - @uri = "/PlayerStreamers" - - end - ## - # Create the PlayerStreamerInstance - # @param [Boolean] video Specifies whether the PlayerStreamer is configured to stream video. Defaults to `true`. - # @param [String] status_callback The URL to which Twilio will send asynchronous webhook requests for every PlayerStreamer event. See [Status Callbacks](/docs/live/api/status-callbacks) for more details. - # @param [String] status_callback_method The HTTP method Twilio should use to call the `status_callback` URL. Can be `POST` or `GET` and the default is `POST`. - # @param [String] max_duration The maximum time, in seconds, that the PlayerStreamer is active (`created` or `started`) before automatically ends. The default value is 300 seconds, and the maximum value is 90000 seconds. Once this maximum duration is reached, Twilio will end the PlayerStreamer, regardless of whether media is still streaming. - # @return [PlayerStreamerInstance] Created PlayerStreamerInstance - def create( - video: :unset, - status_callback: :unset, - status_callback_method: :unset, - max_duration: :unset - ) - - data = Twilio::Values.of({ - 'Video' => video, - 'StatusCallback' => status_callback, - 'StatusCallbackMethod' => status_callback_method, - 'MaxDuration' => max_duration, - }) - - - payload = @version.create('POST', @uri, data: data) - PlayerStreamerInstance.new( - @version, - payload, - ) - end - - - ## - # Lists PlayerStreamerInstance records from the API as a list. - # Unlike stream(), this operation is eager and will load `limit` records into - # memory before returning. - # @param [Order] order The sort order of the list by `date_created`. Can be: `asc` (ascending) or `desc` (descending) with `desc` as the default. - # @param [Status] status Status to filter by, with possible values `created`, `started`, `ended`, or `failed`. - # @param [Integer] limit Upper limit for the number of records to return. stream() - # guarantees to never return more than limit. Default is no limit - # @param [Integer] page_size Number of records to fetch per request, when - # not set will use the default value of 50 records. If no page_size is defined - # but a limit is defined, stream() will attempt to read the limit with the most - # efficient page size, i.e. min(limit, 1000) - # @return [Array] Array of up to limit results - def list(order: :unset, status: :unset, limit: nil, page_size: nil) - self.stream( - order: order, - status: status, - limit: limit, - page_size: page_size - ).entries - end - - ## - # Streams Instance records from the API as an Enumerable. - # This operation lazily loads records as efficiently as possible until the limit - # is reached. - # @param [Order] order The sort order of the list by `date_created`. Can be: `asc` (ascending) or `desc` (descending) with `desc` as the default. - # @param [Status] status Status to filter by, with possible values `created`, `started`, `ended`, or `failed`. - # @param [Integer] limit Upper limit for the number of records to return. stream() - # guarantees to never return more than limit. Default is no limit - # @param [Integer] page_size Number of records to fetch per request, when - # not set will use the default value of 50 records. If no page_size is defined - # but a limit is defined, stream() will attempt to read the limit with the most - # efficient page size, i.e. min(limit, 1000) - # @return [Enumerable] Enumerable that will yield up to limit results - def stream(order: :unset, status: :unset, limit: nil, page_size: nil) - limits = @version.read_limits(limit, page_size) - - page = self.page( - order: order, - status: status, - page_size: limits[:page_size], ) - - @version.stream(page, limit: limits[:limit], page_limit: limits[:page_limit]) - end - - ## - # When passed a block, yields PlayerStreamerInstance records from the API. - # This operation lazily loads records as efficiently as possible until the limit - # is reached. - def each - limits = @version.read_limits - - page = self.page(page_size: limits[:page_size], ) - - @version.stream(page, - limit: limits[:limit], - page_limit: limits[:page_limit]).each {|x| yield x} - end - - ## - # Retrieve a single page of PlayerStreamerInstance records from the API. - # Request is executed immediately. - # @param [Order] order The sort order of the list by `date_created`. Can be: `asc` (ascending) or `desc` (descending) with `desc` as the default. - # @param [Status] status Status to filter by, with possible values `created`, `started`, `ended`, or `failed`. - # @param [String] page_token PageToken provided by the API - # @param [Integer] page_number Page Number, this value is simply for client state - # @param [Integer] page_size Number of records to return, defaults to 50 - # @return [Page] Page of PlayerStreamerInstance - def page(order: :unset, status: :unset, page_token: :unset, page_number: :unset, page_size: :unset) - params = Twilio::Values.of({ - 'Order' => order, - 'Status' => status, - 'PageToken' => page_token, - 'Page' => page_number, - 'PageSize' => page_size, - }) - - response = @version.page('GET', @uri, params: params) - - PlayerStreamerPage.new(@version, response, @solution) - end - - ## - # Retrieve a single page of PlayerStreamerInstance records from the API. - # Request is executed immediately. - # @param [String] target_url API-generated URL for the requested results page - # @return [Page] Page of PlayerStreamerInstance - def get_page(target_url) - response = @version.domain.request( - 'GET', - target_url - ) - PlayerStreamerPage.new(@version, response, @solution) - end - - - - # Provide a user friendly representation - def to_s - '#' - end - end - - - class PlayerStreamerContext < InstanceContext - ## - # Initialize the PlayerStreamerContext - # @param [Version] version Version that contains the resource - # @param [String] sid The SID of the PlayerStreamer resource to update. - # @return [PlayerStreamerContext] PlayerStreamerContext - def initialize(version, sid) - super(version) - - # Path Solution - @solution = { sid: sid, } - @uri = "/PlayerStreamers/#{@solution[:sid]}" - - # Dependents - @playback_grant = nil - end - ## - # Fetch the PlayerStreamerInstance - # @return [PlayerStreamerInstance] Fetched PlayerStreamerInstance - def fetch - - - payload = @version.fetch('GET', @uri) - PlayerStreamerInstance.new( - @version, - payload, - sid: @solution[:sid], - ) - end - - ## - # Update the PlayerStreamerInstance - # @param [UpdateStatus] status - # @return [PlayerStreamerInstance] Updated PlayerStreamerInstance - def update( - status: nil - ) - - data = Twilio::Values.of({ - 'Status' => status, - }) - - - payload = @version.update('POST', @uri, data: data) - PlayerStreamerInstance.new( - @version, - payload, - sid: @solution[:sid], - ) - end - - ## - # Access the playback_grant - # @return [PlaybackGrantList] - # @return [PlaybackGrantContext] - def playback_grant - PlaybackGrantContext.new( - @version, - @solution[:sid] - ) - end - - ## - # Provide a user friendly representation - def to_s - context = @solution.map{|k, v| "#{k}: #{v}"}.join(',') - "#" - end - - ## - # Provide a detailed, user friendly representation - def inspect - context = @solution.map{|k, v| "#{k}: #{v}"}.join(',') - "#" - end - end - - class PlayerStreamerPage < Page - ## - # Initialize the PlayerStreamerPage - # @param [Version] version Version that contains the resource - # @param [Response] response Response from the API - # @param [Hash] solution Path solution for the resource - # @return [PlayerStreamerPage] PlayerStreamerPage - def initialize(version, response, solution) - super(version, response) - - # Path Solution - @solution = solution - end - - ## - # Build an instance of PlayerStreamerInstance - # @param [Hash] payload Payload response from the API - # @return [PlayerStreamerInstance] PlayerStreamerInstance - def get_instance(payload) - PlayerStreamerInstance.new(@version, payload) - end - - ## - # Provide a user friendly representation - def to_s - '' - end - end - class PlayerStreamerInstance < InstanceResource - ## - # Initialize the PlayerStreamerInstance - # @param [Version] version Version that contains the resource - # @param [Hash] payload payload that contains response from Twilio - # @param [String] account_sid The SID of the - # {Account}[https://www.twilio.com/docs/iam/api/account] that created this PlayerStreamer - # resource. - # @param [String] sid The SID of the Call resource to fetch. - # @return [PlayerStreamerInstance] PlayerStreamerInstance - def initialize(version, payload , sid: nil) - super(version) - - # Marshaled Properties - @properties = { - 'account_sid' => payload['account_sid'], - 'date_created' => Twilio.deserialize_iso8601_datetime(payload['date_created']), - 'date_updated' => Twilio.deserialize_iso8601_datetime(payload['date_updated']), - 'video' => payload['video'], - 'links' => payload['links'], - 'sid' => payload['sid'], - 'status' => payload['status'], - 'url' => payload['url'], - 'status_callback' => payload['status_callback'], - 'status_callback_method' => payload['status_callback_method'], - 'ended_reason' => payload['ended_reason'], - 'max_duration' => payload['max_duration'] == nil ? payload['max_duration'] : payload['max_duration'].to_i, - } - - # Context - @instance_context = nil - @params = { 'sid' => sid || @properties['sid'] , } - end - - ## - # Generate an instance context for the instance, the context is capable of - # performing various actions. All instance actions are proxied to the context - # @return [PlayerStreamerContext] CallContext for this CallInstance - def context - unless @instance_context - @instance_context = PlayerStreamerContext.new(@version , @params['sid']) - end - @instance_context - end - - ## - # @return [String] The SID of the [Account](https://www.twilio.com/docs/iam/api/account) that created the PlayerStreamer resource. - def account_sid - @properties['account_sid'] - end - - ## - # @return [Time] The date and time in GMT when the resource was created specified in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format. - def date_created - @properties['date_created'] - end - - ## - # @return [Time] The date and time in GMT when the resource was last updated specified in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format. - def date_updated - @properties['date_updated'] - end - - ## - # @return [Boolean] Specifies whether the PlayerStreamer is configured to stream video. Defaults to `true`. - def video - @properties['video'] - end - - ## - # @return [Hash] The URLs of related resources. - def links - @properties['links'] - end - - ## - # @return [String] The unique string generated to identify the PlayerStreamer resource. - def sid - @properties['sid'] - end - - ## - # @return [Status] - def status - @properties['status'] - end - - ## - # @return [String] The absolute URL of the resource. - def url - @properties['url'] - end - - ## - # @return [String] The URL to which Twilio will send asynchronous webhook requests for every PlayerStreamer event. See [Status Callbacks](/docs/live/api/status-callbacks) for more details. - def status_callback - @properties['status_callback'] - end - - ## - # @return [String] The HTTP method Twilio should use to call the `status_callback` URL. Can be `POST` or `GET` and the default is `POST`. - def status_callback_method - @properties['status_callback_method'] - end - - ## - # @return [EndedReason] - def ended_reason - @properties['ended_reason'] - end - - ## - # @return [String] The maximum time, in seconds, that the PlayerStreamer is active (`created` or `started`) before automatically ends. The default value is 300 seconds, and the maximum value is 90000 seconds. Once this maximum duration is reached, Twilio will end the PlayerStreamer, regardless of whether media is still streaming. - def max_duration - @properties['max_duration'] - end - - ## - # Fetch the PlayerStreamerInstance - # @return [PlayerStreamerInstance] Fetched PlayerStreamerInstance - def fetch - - context.fetch - end - - ## - # Update the PlayerStreamerInstance - # @param [UpdateStatus] status - # @return [PlayerStreamerInstance] Updated PlayerStreamerInstance - def update( - status: nil - ) - - context.update( - status: status, - ) - end - - ## - # Access the playback_grant - # @return [playback_grant] playback_grant - def playback_grant - context.playback_grant - end - - ## - # Provide a user friendly representation - def to_s - values = @params.map{|k, v| "#{k}: #{v}"}.join(" ") - "" - end - - ## - # Provide a detailed, user friendly representation - def inspect - values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ") - "" - end - end - - end - end - end -end diff --git a/lib/twilio-ruby/rest/media/v1/player_streamer/playback_grant.rb b/lib/twilio-ruby/rest/media/v1/player_streamer/playback_grant.rb deleted file mode 100644 index 551484967..000000000 --- a/lib/twilio-ruby/rest/media/v1/player_streamer/playback_grant.rb +++ /dev/null @@ -1,255 +0,0 @@ -## -# This code was generated by -# ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __ -# | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/ -# | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \ -# -# Twilio - Media -# This is the public Twilio REST API. -# -# NOTE: This class is auto generated by OpenAPI Generator. -# https://openapi-generator.tech -# Do not edit the class manually. -# - - -module Twilio - module REST - class Media < MediaBase - class V1 < Version - class PlayerStreamerContext < InstanceContext - - class PlaybackGrantList < ListResource - - ## - # Initialize the PlaybackGrantList - # @param [Version] version Version that contains the resource - # @return [PlaybackGrantList] PlaybackGrantList - def initialize(version, sid: nil) - super(version) - # Path Solution - @solution = { sid: sid } - - - end - - - - # Provide a user friendly representation - def to_s - '#' - end - end - - - class PlaybackGrantContext < InstanceContext - ## - # Initialize the PlaybackGrantContext - # @param [Version] version Version that contains the resource - # @param [String] sid The SID of the PlayerStreamer resource to fetch. - # @return [PlaybackGrantContext] PlaybackGrantContext - def initialize(version, sid) - super(version) - - # Path Solution - @solution = { sid: sid, } - @uri = "/PlayerStreamers/#{@solution[:sid]}/PlaybackGrant" - - - end - ## - # Create the PlaybackGrantInstance - # @param [String] ttl The time to live of the PlaybackGrant. Default value is 15 seconds. Maximum value is 60 seconds. - # @param [String] access_control_allow_origin The full origin URL where the livestream can be streamed. If this is not provided, it can be streamed from any domain. - # @return [PlaybackGrantInstance] Created PlaybackGrantInstance - def create( - ttl: :unset, - access_control_allow_origin: :unset - ) - - data = Twilio::Values.of({ - 'Ttl' => ttl, - 'AccessControlAllowOrigin' => access_control_allow_origin, - }) - - - payload = @version.create('POST', @uri, data: data) - PlaybackGrantInstance.new( - @version, - payload, - sid: @solution[:sid], - ) - end - - ## - # Fetch the PlaybackGrantInstance - # @return [PlaybackGrantInstance] Fetched PlaybackGrantInstance - def fetch - - - payload = @version.fetch('GET', @uri) - PlaybackGrantInstance.new( - @version, - payload, - sid: @solution[:sid], - ) - end - - - ## - # Provide a user friendly representation - def to_s - context = @solution.map{|k, v| "#{k}: #{v}"}.join(',') - "#" - end - - ## - # Provide a detailed, user friendly representation - def inspect - context = @solution.map{|k, v| "#{k}: #{v}"}.join(',') - "#" - end - end - - class PlaybackGrantPage < Page - ## - # Initialize the PlaybackGrantPage - # @param [Version] version Version that contains the resource - # @param [Response] response Response from the API - # @param [Hash] solution Path solution for the resource - # @return [PlaybackGrantPage] PlaybackGrantPage - def initialize(version, response, solution) - super(version, response) - - # Path Solution - @solution = solution - end - - ## - # Build an instance of PlaybackGrantInstance - # @param [Hash] payload Payload response from the API - # @return [PlaybackGrantInstance] PlaybackGrantInstance - def get_instance(payload) - PlaybackGrantInstance.new(@version, payload, sid: @solution[:sid]) - end - - ## - # Provide a user friendly representation - def to_s - '' - end - end - class PlaybackGrantInstance < InstanceResource - ## - # Initialize the PlaybackGrantInstance - # @param [Version] version Version that contains the resource - # @param [Hash] payload payload that contains response from Twilio - # @param [String] account_sid The SID of the - # {Account}[https://www.twilio.com/docs/iam/api/account] that created this PlaybackGrant - # resource. - # @param [String] sid The SID of the Call resource to fetch. - # @return [PlaybackGrantInstance] PlaybackGrantInstance - def initialize(version, payload , sid: nil) - super(version) - - # Marshaled Properties - @properties = { - 'sid' => payload['sid'], - 'url' => payload['url'], - 'account_sid' => payload['account_sid'], - 'date_created' => Twilio.deserialize_iso8601_datetime(payload['date_created']), - 'grant' => payload['grant'], - } - - # Context - @instance_context = nil - @params = { 'sid' => sid || @properties['sid'] , } - end - - ## - # Generate an instance context for the instance, the context is capable of - # performing various actions. All instance actions are proxied to the context - # @return [PlaybackGrantContext] CallContext for this CallInstance - def context - unless @instance_context - @instance_context = PlaybackGrantContext.new(@version , @params['sid']) - end - @instance_context - end - - ## - # @return [String] The unique string generated to identify the PlayerStreamer resource that this PlaybackGrant authorizes views for. - def sid - @properties['sid'] - end - - ## - # @return [String] The absolute URL of the resource. - def url - @properties['url'] - end - - ## - # @return [String] The SID of the [Account](https://www.twilio.com/docs/iam/api/account) that created this resource. - def account_sid - @properties['account_sid'] - end - - ## - # @return [Time] The date and time in GMT when the resource was created specified in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format. - def date_created - @properties['date_created'] - end - - ## - # @return [Hash] The grant that authorizes the player sdk to connect to the livestream - def grant - @properties['grant'] - end - - ## - # Create the PlaybackGrantInstance - # @param [String] ttl The time to live of the PlaybackGrant. Default value is 15 seconds. Maximum value is 60 seconds. - # @param [String] access_control_allow_origin The full origin URL where the livestream can be streamed. If this is not provided, it can be streamed from any domain. - # @return [PlaybackGrantInstance] Created PlaybackGrantInstance - def create( - ttl: :unset, - access_control_allow_origin: :unset - ) - - context.create( - ttl: ttl, - access_control_allow_origin: access_control_allow_origin, - ) - end - - ## - # Fetch the PlaybackGrantInstance - # @return [PlaybackGrantInstance] Fetched PlaybackGrantInstance - def fetch - - context.fetch - end - - ## - # Provide a user friendly representation - def to_s - values = @params.map{|k, v| "#{k}: #{v}"}.join(" ") - "" - end - - ## - # Provide a detailed, user friendly representation - def inspect - values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ") - "" - end - end - - end - end - end - end -end - - diff --git a/lib/twilio-ruby/rest/media_base.rb b/lib/twilio-ruby/rest/media_base.rb deleted file mode 100644 index f9e0649be..000000000 --- a/lib/twilio-ruby/rest/media_base.rb +++ /dev/null @@ -1,38 +0,0 @@ -## - # This code was generated by - # ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __ - # | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/ - # | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \ - # - # NOTE: This class is auto generated by OpenAPI Generator. - # https://openapi-generator.tech - # Do not edit the class manually. -# frozen_string_literal: true -module Twilio - module REST - class MediaBase < Domain - ## - # Initialize media domain - # - # @param twilio - The twilio client - # - def initialize(twilio) - super(twilio) - @base_url = "https://media.twilio.com" - @host = "media.twilio.com" - @port = 443 - @v1 = nil - end - - def v1 - @v1 ||= Media::V1.new self - end - - ## - # Provide a user friendly representation - def to_s - ''; - end - end - end -end