/**
 * Valiate request data
 */
export type ValidateRQ = {
  /**
   * Device id
   */
  deviceId: string;

  /**
   * Id
   */
  id: string;

  /**
   * Code
   */
  code: string;
};
