#region Apache License Version 2.0
/*----------------------------------------------------------------
Copyright 2019 Jeffrey Su & Suzhou Senparc Network Technology Co.,Ltd.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file
except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the
License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
either express or implied. See the License for the specific language governing permissions
and limitations under the License.
Detail: https://github.com/JeffreySu/WeiXinMPSDK/blob/master/license.md
----------------------------------------------------------------*/
#endregion Apache License Version 2.0
/*----------------------------------------------------------------
Copyright (C) 2019 Senparc
文件名:CardUpdateData.cs
文件功能描述:卡券更新需要的数据
创建标识:Senparc - 20150211
修改标识:Senparc - 20150303
修改描述:整理接口
----------------------------------------------------------------*/
using System.Collections.Generic;
namespace Senparc.Weixin.MP.AdvancedAPIs.Card
{
///
/// 创建货架数据
///
public class ShelfCreateData
{
///
/// 页面的banner图片链接,须调用。
///
public string banner { get; set; }
///
/// 页面的title。
///
public string page_title { get; set; }
///
/// 页面是否可以分享,填入true/false
///
public bool can_share { get; set; }
///
/// 投放页面的场景值;SCENE_NEAR_BY 附近 SCENE_MENU 自定义菜单 SCENE_QRCODE 二维码 SCENE_ARTICLE 公众号文章 SCENE_H5 h5页面 SCENE_IVR 自动回复 SCENE_CARD_CUSTOM_CELL 卡券自定义cell
///
//[JsonConverter(typeof(StringEnumConverter))]
public CardShelfCreate_Scene scene { get; set; }
///
/// 卡券列表
///
public List card_list { get; set; }
}
public class ShelfCreateData_CardList
{
///
/// 所要在页面投放的cardid
///
public string card_id { get; set; }
///
/// 缩略图url
///
public string thumb_url { get; set; }
}
///
/// 创建礼品卡货架数据
///
public class GiftCardPageData
{
///
/// 货架id
///
public int page_id { get; set; }
///
/// 礼品卡货架名称
///
public string page_title { get; set; }
///
/// 是否支持一次购买多张及发送至群,填true或者false,若填true则支持,默认为false
///
public bool support_multi { get; set; }
///
/// 礼品卡货架是否支持买给自己
///
public bool support_buy_for_self { get; set; }
///
/// 礼品卡货架主题页顶部banner图片,须先将图片上传至CDN,建议尺寸为750px*630px
///
public string banner_pic_url { get; set; }
///
/// 主题结构体
///
public List theme_list { get; set; }
///
/// 主题分类列表
///
public List category_list { get; set; }
///
/// 商家地址
///
public string address { get; set; }
///
/// 商家服务电话
///
public string service_phone { get; set; }
///
/// 商家使用说明,用于描述退款、发票等流程
///
public string biz_description { get; set; }
///
/// 该货架的订单是否支持开发票,填true或者false,若填true则需要调试文档2.2的流程,默认为false
///
public bool need_receipt { get; set; }
///
/// 商家自定义链接,用于承载退款、发票等流程
///
public Cell cell_1 { get; set; }
///
/// 商家自定义链接,用于承载退款、发票等流程
///
public Cell cell_2 { get; set; }
}
///
/// 商户自定义服务入口结构体
///
public class Cell
{
///
/// 自定义入口名称
///
public string title { get; set; }
///
/// 自定义入口链接
///
public string url { get; set; }
}
///
/// 主题分类
///
public class ThemeCategoryItem
{
///
/// 主题分类的名称
///
public string title { get; set; }
}
///
/// 主题结构体
///
public class GiftCardThemeItem
{
///
/// 主题的封面图片,须先将图片上传至CDN 大小控制在1000px*600px
///
public string theme_pic_url { get; set; }
///
/// 主题名称
///
public string title { get; set; }
///
/// 主题title的颜色,直接传入色值
///
public string title_color { get; set; }
///
/// 该主题购买页是否突出商品名显示
///
public bool show_sku_title_first { get; set; }
///
/// 礼品卡列表,标识该主题可选择的面额
///
public List item_list { get; set; }
///
/// 封面列表
///
public List pic_item_list { get; set; }
///
/// 主题标号,对应category_list内的title字段, 若填写了category_list则每个主题必填该序号
///
public int category_index { get; set; }
///
/// 是否将当前主题设置为banner主题(主推荐)
///
public bool is_banner { get; set; }
}
///
/// 商品结构体
///
public class CommodityItem
{
///
/// 待上架的card_id
///
public string card_id { get; set; }
///
/// 商品名,不填写默认为卡名称
///
public string title { get; set; }
///
/// 商品缩略图,1000像素*600像素以下
///
public string pic_url { get; set; }
///
/// 商品简介
///
public string desc { get; set; }
}
///
/// 卡面结构体
///
public class CardPicItem
{
///
/// 卡面图片,须先将图片上传至CDN,大小控制在1000像素*600像素以下
///
public string background_pic_url { get; set; }
///
/// 自定义的卡面的标识
///
public string outer_img_id { get; set; }
///
/// 该卡面对应的默认祝福语,当用户没有编辑内容时会随卡默认填写为用户祝福内容
///
public string default_gifting_msg { get; set; }
}
///
/// 下架礼品卡货架数据
///
public class DownGiftCardPage
{
///
/// 需要下架的page_id
///
public string page_id { get; set; }
///
/// 是否下架所有货架
///
public bool all { get; set; }
///
/// 是否下架
///
public bool maintain { get; set; }
}
///
/// 更新用户礼品卡信息数据
///
public class UpdateUserGiftCardData
{
///
/// 卡券Code码
///
public string code { get; set; }
///
/// 卡券ID
///
public string card_id { get; set; }
///
/// 支持商家激活时针对单个礼品卡分配自定义的礼品卡背景
///
public string background_pic_url { get; set; }
///
/// 商家自定义金额消耗记录,不超过14个汉字
///
public string record_bonus { get; set; }
///
/// 需要设置的余额全量值,传入的数值会直接显示。
///
public int bonus { get; set; }
///
/// 创建时字段custom_field1定义类型的最新数值,限制为4个汉字,12字节
///
public string custom_field_value1 { get; set; }
///
/// 创建时字段custom_field2定义类型的最新数值,限制为4个汉字,12字节
///
public string custom_field_value2 { get; set; }
///
/// 创建时字段custom_field3定义类型的最新数值,限制为4个汉字,12字节
///
public string custom_field_value3 { get; set; }
///
/// 控制本次积分变动后转赠入口是否出现
///
public bool can_give_friend { get; set; }
}
}