csharp/core/Models/GetObjectMetaRequest.cs (15 lines of code) (raw):

// This file is auto-generated, don't edit it. Thanks. using System; using System.Collections.Generic; using System.IO; using Tea; namespace AlibabaCloud.OSS.Models { public class GetObjectMetaRequest : TeaModel { /// <summary> /// BucketName /// </summary> [NameInMap("BucketName")] [Validation(Required=true, Pattern="[a-zA-Z0-9-_]+")] public string BucketName { get; set; } /// <summary> /// ObjectName /// </summary> [NameInMap("ObjectName")] [Validation(Required=true)] public string ObjectName { get; set; } } }