/// /// AppleAuthCredential.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.appleauth import androidx.annotation.Keep import com.facebook.proguard.annotations.DoNotStrip import com.margelo.nitro.core.* /** * Represents the JavaScript object/struct "AppleAuthCredential". */ @DoNotStrip @Keep data class AppleAuthCredential @DoNotStrip @Keep constructor( val user: String, val email: String?, val fullName: String?, val authorizationCode: String?, val identityToken: String?, val state: String? ) { /* main constructor */ }