| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- using System.Text.Json.Serialization;
- using System.Collections.Generic;
- using Topsdk.Util;
- namespace Topsdk.Top.Ability3261.Domain;
- public class TaobaoTbkDgCpaActivityDetailResult
- {
- /*
- 错误代码
- */
- private string? bizErrorFeature;
- /*
- 返回素材id
- */
- private TaobaoTbkDgCpaActivityDetailPageResult? data;
- /*
- 是否成功
- */
- private bool? success;
- /*
- 结果码
- */
- private long? resultCode;
- /*
- 错误描述
- */
- private string? bizErrorDesc;
- /*
- 错误代码
- */
- private long? bizErrorCode;
- /*
- 结果信息
- */
- private string? resultMsg;
- [JsonPropertyName("biz_error_feature")]
- public string? BizErrorFeature
- {
- get => bizErrorFeature;
- set => this.bizErrorFeature = value;
- }
- [JsonPropertyName("data")]
- public TaobaoTbkDgCpaActivityDetailPageResult? Data
- {
- get => data;
- set => this.data = value;
- }
- [JsonPropertyName("success")]
- public bool? Success
- {
- get => success;
- set => this.success = value;
- }
- [JsonPropertyName("result_code")]
- public long? ResultCode
- {
- get => resultCode;
- set => this.resultCode = value;
- }
- [JsonPropertyName("biz_error_desc")]
- public string? BizErrorDesc
- {
- get => bizErrorDesc;
- set => this.bizErrorDesc = value;
- }
- [JsonPropertyName("biz_error_code")]
- public long? BizErrorCode
- {
- get => bizErrorCode;
- set => this.bizErrorCode = value;
- }
- [JsonPropertyName("result_msg")]
- public string? ResultMsg
- {
- get => resultMsg;
- set => this.resultMsg = value;
- }
- }
|