メインコンテンツまでスキップ

Supported Device Validation

Validation messages for device-related fields, covering the supported flag and device ID.


Overview

KeyMessageDescription
NotNull.supportedDeviceDto.supportedサポートされているフラグはnullであってはなりません。The supported flag is null.
NotNull.baseDeviceDto.idデバイスIDが必要です。デバイスIDをご提供ください。The device ID is null.
Positive.baseDeviceDto.idデバイスIDは0より大きくなければなりません。有効なIDを入力してください。The device ID must be greater than 0; the provided value is 0 or less.

Validation Message Details

NotNull.supportedDeviceDto.supported

Message

サポートされているフラグはnullであってはなりません。

Description

The supported flag is null.

Root Cause

  • The supported field was not included in the request.

Resolution

  1. Provide a boolean value for the supported field.

NotNull.baseDeviceDto.id

Message

デバイスIDが必要です。デバイスIDをご提供ください。

Description

The device ID is null.

Root Cause

  • The id field was not included in the device request.

Resolution

  1. Provide a valid device ID.

Positive.baseDeviceDto.id

Message

デバイスIDは0より大きくなければなりません。有効なIDを入力してください。

Description

The device ID must be greater than 0; the provided value is 0 or less.

Root Cause

  • A id value of 0 or a negative number was provided.

Resolution

  1. Enter a device ID greater than 0.