/// /// PTLocationAccess.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.espprovtoolkit import androidx.annotation.Keep import com.facebook.proguard.annotations.DoNotStrip /** * Represents the JavaScript enum/union "PTLocationAccess". */ @DoNotStrip @Keep enum class PTLocationAccess(@DoNotStrip @Keep val value: Int) { GRANTED(0), DENIED(1), NOT_DETERMINED(2); companion object }