using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// AlipayOpenPublicLifeaccountCreateModel Data Structure. /// [Serializable] public class AlipayOpenPublicLifeaccountCreateModel : AopObject { /// /// 勾选同意生活号协议(true:同意,false:不同意) /// [XmlElement("agreement")] public string Agreement { get; set; } /// /// 号主页背景图 /// [XmlElement("background")] public string Background { get; set; } /// /// 营业执照号 /// [XmlElement("biz_license_no")] public string BizLicenseNo { get; set; } /// /// 商标授权 /// [XmlArray("brand_authorization")] [XmlArrayItem("string")] public List BrandAuthorization { get; set; } /// /// 生活号的简介信息 /// [XmlElement("brief_introduction")] public string BriefIntroduction { get; set; } /// /// 营业执照图片地址 /// [XmlElement("business_license")] public string BusinessLicense { get; set; } /// /// 行业类目mcc类目code /// [XmlElement("category_id")] public string CategoryId { get; set; } /// /// 联系人电子邮件 /// [XmlElement("contact_email")] public string ContactEmail { get; set; } /// /// 作为生活号管理者的联系人 /// [XmlElement("contact_name")] public string ContactName { get; set; } /// /// 联系人电话 /// [XmlElement("contact_tel")] public string ContactTel { get; set; } /// /// 客服电话 /// [XmlElement("customer_tel")] public string CustomerTel { get; set; } /// /// 生活号头像地址 /// [XmlElement("logo")] public string Logo { get; set; } /// /// 菜单信息(非必填)(一级菜单最多4个,具体的菜单格式,见文档 /// [XmlElement("menu_info")] public string MenuInfo { get; set; } /// /// 生活号名称(店铺名等) /// [XmlElement("name")] public string Name { get; set; } /// /// 平台帐号id(比如1688帐号id) /// [XmlElement("platform_account_id")] public string PlatformAccountId { get; set; } /// /// 平台码(标识1688、饿了么等) /// [XmlElement("platform_unique_id")] public string PlatformUniqueId { get; set; } /// /// 蚂蚁统一会员ID /// [XmlElement("user_id")] public string UserId { get; set; } } }