using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayDataAiserviceSgxGatewayQueryModel Data Structure. /// [Serializable] public class AlipayDataAiserviceSgxGatewayQueryModel : AopObject { /// /// biz_handler: 具体的业务方法名称,该值必须填写。业务方请联系此openapi接口负责人获取业务方法名称。 /// [XmlElement("biz_handler")] public string BizHandler { get; set; } /// /// biz_handler_input: 具体业务请求输入的json字符串,必须填写且唯一。该值的具体内容取决于具体业务。 /// [XmlElement("biz_handler_input")] public string BizHandlerInput { get; set; } /// /// institution_uuid: 机构ID,该值可选,默认不填写。业务调用方如果需要填写此值,需要联系此openapi接口人获取。 /// [XmlElement("institution_uuid")] public string InstitutionUuid { get; set; } /// /// request_uuid: 请求的唯一ID,用于定位请求。该ID用户可以自行生成,每次请求的ID不要重复。 /// [XmlElement("request_uuid")] public string RequestUuid { get; set; } } }