module Bespokify::Client::MeasurementProfile
Public Instance Methods
create_measurement_profile(options = {})
click to toggle source
# File lib/bespokify/client/measurement_profile.rb, line 12 def create_measurement_profile(options = {}) post('/measurementProfiles', options) end
delete_measurement_profile(measurement_id)
click to toggle source
# File lib/bespokify/client/measurement_profile.rb, line 20 def delete_measurement_profile(measurement_id) delete("/measurementProfiles/#{measurement_id}") end
measurement_profile(measurement_id)
click to toggle source
# File lib/bespokify/client/measurement_profile.rb, line 8 def measurement_profile(measurement_id) get("/measurementProfiles/#{measurement_id}") end
measurement_profiles(options = {})
click to toggle source
# File lib/bespokify/client/measurement_profile.rb, line 4 def measurement_profiles(options = {}) get('/measurementProfiles', options) end
measurement_profille_rev(measurement_id, rev_id)
click to toggle source
# File lib/bespokify/client/measurement_profile.rb, line 28 def measurement_profille_rev(measurement_id, rev_id) get("/measurementProfiles/#{measurement_id}/revs/#{rev_id}") end
measurement_profille_revert(measurement_id, options = {})
click to toggle source
# File lib/bespokify/client/measurement_profile.rb, line 32 def measurement_profille_revert(measurement_id, options = {}) get("/measurementProfiles/#{measurement_id}/revert", options) end
measurement_profille_revs(measurement_id, options = {})
click to toggle source
# File lib/bespokify/client/measurement_profile.rb, line 24 def measurement_profille_revs(measurement_id, options = {}) get("/measurementProfiles/#{measurement_id}/revs", options) end
update_measurement_profile(measurement_id, options = {})
click to toggle source
# File lib/bespokify/client/measurement_profile.rb, line 16 def update_measurement_profile(measurement_id, options = {}) patch("/measurementProfiles/#{measurement_id}", options) end