Sha256: f9fa12b3105f862e9f2154f116edc84cac1b39ad6722a849a35cf399907efafc
Contents?: true
Size: 506 Bytes
Versions: 28
Compression:
Stored size: 506 Bytes
Contents
# frozen_string_literal: true module DjiMqttConnect module Thing::Product class DebugModeCloseServicesMessage < ServicesMessage def self.build(bid: generate_bid, tid: generate_tid, timestamp: current_timestamp) new( bid: bid, tid: tid, timestamp: timestamp, _method: "debug_mode_close" ) end attribute :_method, Types::String.enum("debug_mode_close") attribute :data, Types::Hash.default({}.freeze) end end end
Version data entries
28 entries across 28 versions & 1 rubygems