/// /// NitroRequestMethod.kt /// This file was generated by nitrogen. DO NOT MODIFY THIS FILE. /// https://github.com/mrousavy/nitro /// Copyright © Marc Rousavy @ Margelo /// package com.margelo.nitro.nitrofetch import androidx.annotation.Keep import com.facebook.proguard.annotations.DoNotStrip /** * Represents the JavaScript enum/union "NitroRequestMethod". */ @DoNotStrip @Keep enum class NitroRequestMethod(@DoNotStrip @Keep val value: Int) { GET(0), HEAD(1), POST(2), PUT(3), PATCH(4), DELETE(5), OPTIONS(6); companion object }