| 12345678910111213141516171819202122232425 |
- using System.Text.Json.Serialization;
- using System.Collections.Generic;
- using Topsdk.Util;
- namespace Topsdk.Top.Ability1826.Domain;
- public class TaobaoTbkDgVegasTljStopUpdateStatusResult
- {
- /*
- 暂停成功
- */
- private bool? updateSuccess;
- [JsonPropertyName("update_success")]
- public bool? UpdateSuccess
- {
- get => updateSuccess;
- set => this.updateSuccess = value;
- }
- }
|