Sha256: b5f1980839e623689bf263e50adb84a315de92a6a5144d2a588435f0af1ad700
Contents?: true
Size: 353 Bytes
Versions: 6
Compression:
Stored size: 353 Bytes
Contents
module QuizApiClient::Services class ContentExportsService < BaseApiService def create(params:, token: nil) post_to_quiz_api(params: params, token: token) end private def post_to_quiz_api(params:, token:) client(token: token).post( '/api/content_exports', content_export: params ) end end end
Version data entries
6 entries across 6 versions & 1 rubygems