Sha256: 6581b50b64d7f991d4556181ec752447203e94375ef5f08b09ed1ef823c8c9fd
Contents?: true
Size: 507 Bytes
Versions: 28
Compression:
Stored size: 507 Bytes
Contents
# 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") attribute :data, Types::Hash.default({}.freeze) end end end
Version data entries
28 entries across 28 versions & 1 rubygems