csharp/Microsoft.Azure.Databricks.Client/Models/FileHandle.cs (8 lines of code) (raw):
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
using System.Text.Json.Serialization;
namespace Microsoft.Azure.Databricks.Client.Models;
public record FileHandle
{
/// <summary>
/// The handle on an open stream. This field is required.
/// </summary>
[JsonPropertyName("handle")]
public long Handle { get; set; }
}