aimiaobi-20230801/core/Models/GetFileContentLengthResponse.cs (18 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.SDK.AiMiaoBi20230801.Models
{
public class GetFileContentLengthResponse : TeaModel {
[NameInMap("headers")]
[Validation(Required=false)]
public Dictionary<string, string> Headers { get; set; }
[NameInMap("statusCode")]
[Validation(Required=false)]
public int? StatusCode { get; set; }
[NameInMap("body")]
[Validation(Required=false)]
public GetFileContentLengthResponseBody Body { get; set; }
}
}