class Kaltura::KalturaSchemaService

Expose the schema definitions for syndication MRSS, bulk upload XML and other schema types.

Public Class Methods

new(client) click to toggle source
Calls superclass method
# File lib/kaltura_client.rb, line 4167
def initialize(client)
        super(client)
end

Public Instance Methods

serve(type) click to toggle source

Serves the requested XSD according to the type and name. @return [file]

# File lib/kaltura_client.rb, line 4173
def serve(type)
        kparams = {}
        client.add_param(kparams, 'type', type)
        client.queue_service_action_call('schema', 'serve', 'file', kparams)
        return client.get_serve_url()
end