/// /// NitroRequestCredentials.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 "NitroRequestCredentials". */ @DoNotStrip @Keep enum class NitroRequestCredentials(@DoNotStrip @Keep val value: Int) { INCLUDE(0), OMIT(1), SAME_ORIGIN(2); companion object }