CustomerApplyConfigurationRequest.fromJson constructor

CustomerApplyConfigurationRequest.fromJson(
  1. Map json_
)

Implementation

CustomerApplyConfigurationRequest.fromJson(core.Map json_)
    : this(
        configuration: json_['configuration'] as core.String?,
        device: json_.containsKey('device')
            ? DeviceReference.fromJson(
                json_['device'] as core.Map<core.String, core.dynamic>)
            : null,
      );