/// /// AuthenticationPrompt.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.sensitiveinfo import androidx.annotation.Keep import com.facebook.proguard.annotations.DoNotStrip import java.util.Objects /** * Represents the JavaScript object/struct "AuthenticationPrompt". */ @DoNotStrip @Keep data class AuthenticationPrompt( @DoNotStrip @Keep val title: String, @DoNotStrip @Keep val subtitle: String?, @DoNotStrip @Keep val description: String?, @DoNotStrip @Keep val cancel: String? ) { /* primary constructor */ override fun equals(other: Any?): Boolean { if (this === other) return true if (other !is AuthenticationPrompt) return false return Objects.deepEquals(this.title, other.title) && Objects.deepEquals(this.subtitle, other.subtitle) && Objects.deepEquals(this.description, other.description) && Objects.deepEquals(this.cancel, other.cancel) } override fun hashCode(): Int { return arrayOf( title, subtitle, description, cancel ).contentDeepHashCode() } companion object { /** * Constructor called from C++ */ @DoNotStrip @Keep @Suppress("unused") @JvmStatic private fun fromCpp(title: String, subtitle: String?, description: String?, cancel: String?): AuthenticationPrompt { return AuthenticationPrompt(title, subtitle, description, cancel) } } }