using System; using System.Runtime.InteropServices; namespace DeepSpeechClient.Structs { [StructLayout(LayoutKind.Sequential)] internal unsafe struct CandidateTranscript { /// /// Native list of tokens. /// internal unsafe IntPtr tokens; /// /// Count of tokens from the native side. /// internal unsafe int num_tokens; /// /// Approximated confidence value for this transcription. /// internal unsafe double confidence; } }