module StrawberryAPI::Client::CopyToFeedbacks
Public Instance Methods
copy_to_feedback(id:)
click to toggle source
Fetches a copy to feedback
@param [Integer] id Id of the copy to feedback to retrieve
@return [StrawberryAPI::CopyToFeedback] The fetched copy to feedback
# File lib/strawberry_api/client/copy_to_feedbacks.rb, line 11 def copy_to_feedback(id:) data = get("/copy_to_status/#{id}").parse['job'] data.nil? ? nil : CopyToFeedback.new(data) end