Sha256: d7fe96e20af185c83467940fd1de6a71f089d3484893401dbc2cfc964b5b1e43

Contents?: true

Size: 1.41 KB

Versions: 1

Compression:

Stored size: 1.41 KB

Contents

=begin
#Pinterest REST API

#Pinterest's REST API

The version of the OpenAPI document: 5.3.0
Contact: blah@cliffano.com
Generated by: https://openapi-generator.tech
OpenAPI Generator version: 5.4.0

=end

require 'date'
require 'time'

module PinterestSdkClient
  # Pin media source.
  module PinMediaSource
    class << self
      # List of class defined in oneOf (OpenAPI v3)
      def openapi_one_of
        [
          :'PinMediaSourceImageBase64',
          :'PinMediaSourceImageURL',
          :'PinMediaSourceVideoID'
        ]
      end

      # Discriminator's property name (OpenAPI v3)
      def openapi_discriminator_name
        :'source_type'
      end

      # Discriminator's mapping (OpenAPI v3)
      def openapi_discriminator_mapping
        {
          :'image_base64' => :'PinMediaSourceImageBase64',
          :'image_url' => :'PinMediaSourceImageURL',
          :'video_id' => :'PinMediaSourceVideoID'
        }
      end

      # Builds the object
      # @param [Mixed] Data to be matched against the list of oneOf items
      # @return [Object] Returns the model or the data itself
      def build(data)
        discriminator_value = data[openapi_discriminator_name]
        return nil unless discriminator_value

        klass = openapi_discriminator_mapping[discriminator_value.to_sym]
        return nil unless klass

        PinterestSdkClient.const_get(klass).build_from_hash(data)
      end
    end
  end

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
pinterest_sdk-1.1.0 lib/pinterest_sdk/models/pin_media_source.rb