# frozen_string_literal: true module DjiMqttConnect module Thing::Product class FlighttaskPauseServicesMessage < ServicesMessage def self.build(bid: generate_bid, tid: generate_tid, timestamp: current_timestamp) new( bid: bid, tid: tid, timestamp: timestamp, _method: "flighttask_pause" ) end attribute :_method, Types::String.enum("flighttask_pause") end end end