You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
841 B
37 lines
841 B
using com.alibaba.openapi.client.primitive;
|
|
using com.alibaba.openapi.client.util;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Runtime.Serialization;
|
|
using System.Text;
|
|
using com.alibaba.openapi.client;
|
|
|
|
namespace com.alibaba.china.openapi.client.example.param.apiexample
|
|
{
|
|
[DataContract(Namespace = "com.alibaba.openapi.client")]
|
|
public class ExampleFamilyGetResult : GatewayAPIResponse
|
|
{
|
|
|
|
[DataMember(Order = 1)]
|
|
private ExampleFamily result;
|
|
|
|
/**
|
|
* @return
|
|
*/
|
|
public ExampleFamily getResult() {
|
|
return result;
|
|
}
|
|
|
|
/**
|
|
* 设置 *
|
|
|
|
* 此参数必填
|
|
*/
|
|
public void setResult(ExampleFamily result) {
|
|
this.result = result;
|
|
}
|
|
|
|
|
|
}
|
|
}
|