Sha256: 25f84a668461b5a5528f2d66976bf8ba3afe1ee61734fece73e46f2a74cc88e0
Contents?: true
Size: 839 Bytes
Versions: 26
Compression:
Stored size: 839 Bytes
Contents
# frozen_string_literal: true module DjiMqttConnect module Thing::Product # https://developer.dji.com/doc/cloud-api-tutorial/en/server-api-reference/mqtt/thing-model/gateway/dock/organization.html#device-bind-to-organization class AirportOrganizationBindRequestsMessage < RequestsMessage attribute :_method, Types::String.enum("airport_organization_bind") attribute :data do attribute :bind_devices, Types::Array do attribute :device_binding_code, Types::String attribute :organization_id, Types::String attribute :device_callsign, Types::String attribute :sn, Types::String attribute :device_model_key, Types::String attribute :device_nonce, Types::String attribute :device_secret, Types::String end end end end end
Version data entries
26 entries across 26 versions & 1 rubygems