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