| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- using System.Text.Json.Serialization;
- using System.Collections.Generic;
- using Topsdk.Util;
- namespace Topsdk.Top.Ability1826.Domain;
- public class TaobaoTbkDgVegasTljTemporaryCreateResult
- {
- /*
- model
- */
- private TaobaoTbkDgVegasTljTemporaryCreateRightsInstanceCreateResult? model;
- /*
- msgCode
- */
- private string? msgCode;
- /*
- msgInfo
- */
- private string? msgInfo;
- /*
- success
- */
- private bool? success;
- [JsonPropertyName("model")]
- public TaobaoTbkDgVegasTljTemporaryCreateRightsInstanceCreateResult? Model
- {
- get => model;
- set => this.model = value;
- }
- [JsonPropertyName("msg_code")]
- public string? MsgCode
- {
- get => msgCode;
- set => this.msgCode = value;
- }
- [JsonPropertyName("msg_info")]
- public string? MsgInfo
- {
- get => msgInfo;
- set => this.msgInfo = value;
- }
- [JsonPropertyName("success")]
- public bool? Success
- {
- get => success;
- set => this.success = value;
- }
- }
|