/// /// ErrorCode.kt /// This file was generated by nitrogen. DO NOT MODIFY THIS FILE. /// https://github.com/mrousavy/nitro /// Copyright © 2025 Marc Rousavy @ Margelo /// package com.margelo.nitro.plugpagnitro import androidx.annotation.Keep import com.facebook.proguard.annotations.DoNotStrip /** * Represents the JavaScript enum/union "ErrorCode". */ @DoNotStrip @Keep enum class ErrorCode(@DoNotStrip @Keep val value: Int) { OK(0), OPERATION_ABORTED(-1), AUTHENTICATION_FAILED(-2), COMMUNICATION_ERROR(-3), NO_PRINTER_DEVICE(-4), NO_TRANSACTION_DATA(-5); }