# frozen_string_literal: true module DjiMqttConnect module Thing::Product class DeviceLogEventsMessage < EventsMessage # BID is not always included in message attribute? :bid, Types::UUID attribute :_method, Types::String.enum("device_log") attribute :data do attribute :level, Types::Integer attribute :key, Types::Integer attribute :module, Types::Integer attribute :create_time, Types::Timestamp attribute :args, Types::Hash end end end end