/// /// MediaInfoResult.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.nitromediakit import androidx.annotation.Keep import com.facebook.proguard.annotations.DoNotStrip import com.margelo.nitro.core.* /** * Represents the JavaScript object/struct "MediaInfoResult". */ @DoNotStrip @Keep data class MediaInfoResult @DoNotStrip @Keep constructor( @DoNotStrip @Keep val ok: Boolean, @DoNotStrip @Keep val operation: OperationType, @DoNotStrip @Keep val type: MediaType, @DoNotStrip @Keep val inputUri: String?, @DoNotStrip @Keep val outputUri: String?, @DoNotStrip @Keep val media: MediaInfoMedia?, @DoNotStrip @Keep val warnings: Array?, @DoNotStrip @Keep val error: MediaInfoError? ) { /* main constructor */ }