/// /// CachePolicy.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.nitro_dns import androidx.annotation.Keep import com.facebook.proguard.annotations.DoNotStrip /** * Represents the JavaScript enum/union "CachePolicy". */ @DoNotStrip @Keep enum class CachePolicy(@DoNotStrip @Keep val value: Int) { FOLLOWDNSTTL(0), BYPASS(1), STALEWHILEREVALIDATE(2), STALEIFERROR(3); companion object }