using System;
|
using System.Collections.Generic;
|
using System.Text;
|
|
namespace AlibabaSDK.Domain
|
{
|
public class AlibabaCreateRefundDomain
|
{
|
public string code { get; set; }
|
|
public string message { get; set; }
|
|
public bool success { get; set; }
|
|
public AlibabaCreateRefundDomainResult result { get; set; }
|
}
|
|
public class AlibabaCreateRefundDomainResult
|
{
|
public string refundId { get; set; }
|
}
|
|
}
|