using System.Collections.Generic; using System.Text.Json.Serialization; using Topsdk.Util; using Topsdk.Top.Ability1826.Domain; namespace Topsdk.Top.Ability1826.Response; public class TaobaoTbkDgVegasTljCreateResponse : AbstractTopApiResponse { /* result */ private TaobaoTbkDgVegasTljCreateResult? result; [JsonPropertyName("result")] public TaobaoTbkDgVegasTljCreateResult? Result { get => result; set => this.result = value; } }