class Zype::Base::Videos
Any videos nested routes will inherit from this class
Public Instance Methods
Returns all objects for given class
@param video_id [String] the ID of the video @return [Array<Hash>] the objects returned from the API
# File lib/zype/models/base/videos.rb, line 9 def all(video_id:) client.execute(method: :get, path: "/videos/#{video_id}/#{path}") end
Creates a new object via the API.
@param video_id [String] ID of the video to assign to the object @param params [Hash] the properties of the object @return [Hash] the newly created object
# File lib/zype/models/base/videos.rb, line 27 def create(video_id:, params:) client.execute(method: :post, path: "/videos/#{video_id}/#{path}", params: params) end
Deletes an existing object via the API
@param video_id [String] the ID of the video @param id [String] the ID of the object @return [Hash] the deleted object
# File lib/zype/models/base/videos.rb, line 45 def delete(video_id:, id:) client.execute(method: :delete, path: "/videos/#{video_id}/#{path}/#{id}") end
Returns object matching ID
@param video_id [String] the ID of the video @param id [String] the ID of the object @return [Hash] the object returned from the API
# File lib/zype/models/base/videos.rb, line 18 def find(video_id:, id:) client.execute(method: :get, path: "/videos/#{video_id}/#{path}/#{id}") end
Updates an existing object via the API
@param video_id [String] the ID of the video @param params [Hash] the properties to be updated @return [Hash] the updated object
# File lib/zype/models/base/videos.rb, line 36 def update(video_id:, id:, params:) client.execute(method: :put, path: "/videos/#{video_id}/#{path}/#{id}", params: params) end