首次推送

This commit is contained in:
lym
2026-03-09 00:13:46 +08:00
commit b19613bb31
13974 changed files with 2767735 additions and 0 deletions

View File

@@ -0,0 +1,71 @@
/*
* Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* 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.
*/
namespace TencentCloud.Ds.V20180523.Models
{
using Newtonsoft.Json;
using System.Collections.Generic;
using TencentCloud.Common;
public class CheckVcodeRequest : AbstractModel
{
/// <summary>
/// 模块名VerifyCode
/// </summary>
[JsonProperty("Module")]
public string Module{ get; set; }
/// <summary>
/// 操作名CheckVcode
/// </summary>
[JsonProperty("Operation")]
public string Operation{ get; set; }
/// <summary>
/// 帐号ID
/// </summary>
[JsonProperty("AccountResId")]
public string AccountResId{ get; set; }
/// <summary>
/// 合同ID
/// </summary>
[JsonProperty("ContractResId")]
public string ContractResId{ get; set; }
/// <summary>
/// 验证码
/// </summary>
[JsonProperty("VerifyCode")]
public string VerifyCode{ get; set; }
/// <summary>
/// For internal usage only. DO NOT USE IT.
/// </summary>
internal override void ToMap(Dictionary<string, string> map, string prefix)
{
this.SetParamSimple(map, prefix + "Module", this.Module);
this.SetParamSimple(map, prefix + "Operation", this.Operation);
this.SetParamSimple(map, prefix + "AccountResId", this.AccountResId);
this.SetParamSimple(map, prefix + "ContractResId", this.ContractResId);
this.SetParamSimple(map, prefix + "VerifyCode", this.VerifyCode);
}
}
}

View File

@@ -0,0 +1,43 @@
/*
* Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* 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.
*/
namespace TencentCloud.Ds.V20180523.Models
{
using Newtonsoft.Json;
using System.Collections.Generic;
using TencentCloud.Common;
public class CheckVcodeResponse : AbstractModel
{
/// <summary>
/// 唯一请求 ID每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
/// </summary>
[JsonProperty("RequestId")]
public string RequestId{ get; set; }
/// <summary>
/// For internal usage only. DO NOT USE IT.
/// </summary>
internal override void ToMap(Dictionary<string, string> map, string prefix)
{
this.SetParamSimple(map, prefix + "RequestId", this.RequestId);
}
}
}

View File

@@ -0,0 +1,92 @@
/*
* Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* 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.
*/
namespace TencentCloud.Ds.V20180523.Models
{
using Newtonsoft.Json;
using System.Collections.Generic;
using TencentCloud.Common;
public class CreateContractByUploadRequest : AbstractModel
{
/// <summary>
/// 模块名ContractMng
/// </summary>
[JsonProperty("Module")]
public string Module{ get; set; }
/// <summary>
/// 操作名CreateContractByUpload
/// </summary>
[JsonProperty("Operation")]
public string Operation{ get; set; }
/// <summary>
/// 签署人信息
/// </summary>
[JsonProperty("SignInfos")]
public SignInfo[] SignInfos{ get; set; }
/// <summary>
/// 合同上传链接地址
/// </summary>
[JsonProperty("ContractFile")]
public string ContractFile{ get; set; }
/// <summary>
/// 合同名称
/// </summary>
[JsonProperty("ContractName")]
public string ContractName{ get; set; }
/// <summary>
/// 备注
/// </summary>
[JsonProperty("Remarks")]
public string Remarks{ get; set; }
/// <summary>
/// 合同发起方腾讯云帐号ID由平台自动填写
/// </summary>
[JsonProperty("Initiator")]
public string Initiator{ get; set; }
/// <summary>
/// 合同长时间未签署的过期时间
/// </summary>
[JsonProperty("ExpireTime")]
public string ExpireTime{ get; set; }
/// <summary>
/// For internal usage only. DO NOT USE IT.
/// </summary>
internal override void ToMap(Dictionary<string, string> map, string prefix)
{
this.SetParamSimple(map, prefix + "Module", this.Module);
this.SetParamSimple(map, prefix + "Operation", this.Operation);
this.SetParamArrayObj(map, prefix + "SignInfos.", this.SignInfos);
this.SetParamSimple(map, prefix + "ContractFile", this.ContractFile);
this.SetParamSimple(map, prefix + "ContractName", this.ContractName);
this.SetParamSimple(map, prefix + "Remarks", this.Remarks);
this.SetParamSimple(map, prefix + "Initiator", this.Initiator);
this.SetParamSimple(map, prefix + "ExpireTime", this.ExpireTime);
}
}
}

View File

@@ -0,0 +1,50 @@
/*
* Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* 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.
*/
namespace TencentCloud.Ds.V20180523.Models
{
using Newtonsoft.Json;
using System.Collections.Generic;
using TencentCloud.Common;
public class CreateContractByUploadResponse : AbstractModel
{
/// <summary>
/// 任务ID
/// </summary>
[JsonProperty("TaskId")]
public long? TaskId{ get; set; }
/// <summary>
/// 唯一请求 ID每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
/// </summary>
[JsonProperty("RequestId")]
public string RequestId{ get; set; }
/// <summary>
/// For internal usage only. DO NOT USE IT.
/// </summary>
internal override void ToMap(Dictionary<string, string> map, string prefix)
{
this.SetParamSimple(map, prefix + "TaskId", this.TaskId);
this.SetParamSimple(map, prefix + "RequestId", this.RequestId);
}
}
}

View File

@@ -0,0 +1,113 @@
/*
* Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* 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.
*/
namespace TencentCloud.Ds.V20180523.Models
{
using Newtonsoft.Json;
using System.Collections.Generic;
using TencentCloud.Common;
public class CreateEnterpriseAccountRequest : AbstractModel
{
/// <summary>
/// 模块名AccountMng
/// </summary>
[JsonProperty("Module")]
public string Module{ get; set; }
/// <summary>
/// 操作名CreateEnterpriseAccount
/// </summary>
[JsonProperty("Operation")]
public string Operation{ get; set; }
/// <summary>
/// 企业用户名称
/// </summary>
[JsonProperty("Name")]
public string Name{ get; set; }
/// <summary>
/// 企业用户证件类型8代表营业执照详情请见常见问题
/// </summary>
[JsonProperty("IdentType")]
public long? IdentType{ get; set; }
/// <summary>
/// 企业用户营业执照号码
/// </summary>
[JsonProperty("IdentNo")]
public string IdentNo{ get; set; }
/// <summary>
/// 企业联系人手机号
/// </summary>
[JsonProperty("MobilePhone")]
public string MobilePhone{ get; set; }
/// <summary>
/// 经办人姓名
/// </summary>
[JsonProperty("TransactorName")]
public string TransactorName{ get; set; }
/// <summary>
/// 经办人证件类型0代表身份证
/// </summary>
[JsonProperty("TransactorIdentType")]
public long? TransactorIdentType{ get; set; }
/// <summary>
/// 经办人证件号码
/// </summary>
[JsonProperty("TransactorIdentNo")]
public string TransactorIdentNo{ get; set; }
/// <summary>
/// 经办人手机号
/// </summary>
[JsonProperty("TransactorPhone")]
public string TransactorPhone{ get; set; }
/// <summary>
/// 企业联系人邮箱
/// </summary>
[JsonProperty("Email")]
public string Email{ get; set; }
/// <summary>
/// For internal usage only. DO NOT USE IT.
/// </summary>
internal override void ToMap(Dictionary<string, string> map, string prefix)
{
this.SetParamSimple(map, prefix + "Module", this.Module);
this.SetParamSimple(map, prefix + "Operation", this.Operation);
this.SetParamSimple(map, prefix + "Name", this.Name);
this.SetParamSimple(map, prefix + "IdentType", this.IdentType);
this.SetParamSimple(map, prefix + "IdentNo", this.IdentNo);
this.SetParamSimple(map, prefix + "MobilePhone", this.MobilePhone);
this.SetParamSimple(map, prefix + "TransactorName", this.TransactorName);
this.SetParamSimple(map, prefix + "TransactorIdentType", this.TransactorIdentType);
this.SetParamSimple(map, prefix + "TransactorIdentNo", this.TransactorIdentNo);
this.SetParamSimple(map, prefix + "TransactorPhone", this.TransactorPhone);
this.SetParamSimple(map, prefix + "Email", this.Email);
}
}
}

View File

@@ -0,0 +1,50 @@
/*
* Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* 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.
*/
namespace TencentCloud.Ds.V20180523.Models
{
using Newtonsoft.Json;
using System.Collections.Generic;
using TencentCloud.Common;
public class CreateEnterpriseAccountResponse : AbstractModel
{
/// <summary>
/// 帐号ID
/// </summary>
[JsonProperty("AccountResId")]
public string AccountResId{ get; set; }
/// <summary>
/// 唯一请求 ID每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
/// </summary>
[JsonProperty("RequestId")]
public string RequestId{ get; set; }
/// <summary>
/// For internal usage only. DO NOT USE IT.
/// </summary>
internal override void ToMap(Dictionary<string, string> map, string prefix)
{
this.SetParamSimple(map, prefix + "AccountResId", this.AccountResId);
this.SetParamSimple(map, prefix + "RequestId", this.RequestId);
}
}
}

View File

@@ -0,0 +1,78 @@
/*
* Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* 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.
*/
namespace TencentCloud.Ds.V20180523.Models
{
using Newtonsoft.Json;
using System.Collections.Generic;
using TencentCloud.Common;
public class CreatePersonalAccountRequest : AbstractModel
{
/// <summary>
/// 模块名AccountMng
/// </summary>
[JsonProperty("Module")]
public string Module{ get; set; }
/// <summary>
/// 操作名CreatePersonalAccount
/// </summary>
[JsonProperty("Operation")]
public string Operation{ get; set; }
/// <summary>
/// 个人用户姓名
/// </summary>
[JsonProperty("Name")]
public string Name{ get; set; }
/// <summary>
/// 个人用户证件类型0代表身份证详情请见常见问题
/// </summary>
[JsonProperty("IdentType")]
public long? IdentType{ get; set; }
/// <summary>
/// 个人用户证件号码
/// </summary>
[JsonProperty("IdentNo")]
public string IdentNo{ get; set; }
/// <summary>
/// 个人用户手机号
/// </summary>
[JsonProperty("MobilePhone")]
public string MobilePhone{ get; set; }
/// <summary>
/// For internal usage only. DO NOT USE IT.
/// </summary>
internal override void ToMap(Dictionary<string, string> map, string prefix)
{
this.SetParamSimple(map, prefix + "Module", this.Module);
this.SetParamSimple(map, prefix + "Operation", this.Operation);
this.SetParamSimple(map, prefix + "Name", this.Name);
this.SetParamSimple(map, prefix + "IdentType", this.IdentType);
this.SetParamSimple(map, prefix + "IdentNo", this.IdentNo);
this.SetParamSimple(map, prefix + "MobilePhone", this.MobilePhone);
}
}
}

View File

@@ -0,0 +1,50 @@
/*
* Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* 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.
*/
namespace TencentCloud.Ds.V20180523.Models
{
using Newtonsoft.Json;
using System.Collections.Generic;
using TencentCloud.Common;
public class CreatePersonalAccountResponse : AbstractModel
{
/// <summary>
/// 账号ID
/// </summary>
[JsonProperty("AccountResId")]
public string AccountResId{ get; set; }
/// <summary>
/// 唯一请求 ID每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
/// </summary>
[JsonProperty("RequestId")]
public string RequestId{ get; set; }
/// <summary>
/// For internal usage only. DO NOT USE IT.
/// </summary>
internal override void ToMap(Dictionary<string, string> map, string prefix)
{
this.SetParamSimple(map, prefix + "AccountResId", this.AccountResId);
this.SetParamSimple(map, prefix + "RequestId", this.RequestId);
}
}
}

View File

@@ -0,0 +1,71 @@
/*
* Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* 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.
*/
namespace TencentCloud.Ds.V20180523.Models
{
using Newtonsoft.Json;
using System.Collections.Generic;
using TencentCloud.Common;
public class CreateSealRequest : AbstractModel
{
/// <summary>
/// 模块名SealMng
/// </summary>
[JsonProperty("Module")]
public string Module{ get; set; }
/// <summary>
/// 操作名CreateSeal
/// </summary>
[JsonProperty("Operation")]
public string Operation{ get; set; }
/// <summary>
/// 帐号ID
/// </summary>
[JsonProperty("AccountResId")]
public string AccountResId{ get; set; }
/// <summary>
/// 签章链接图片必须为png格式
/// </summary>
[JsonProperty("ImgUrl")]
public string ImgUrl{ get; set; }
/// <summary>
/// 图片数据base64编码
/// </summary>
[JsonProperty("ImgData")]
public string ImgData{ get; set; }
/// <summary>
/// For internal usage only. DO NOT USE IT.
/// </summary>
internal override void ToMap(Dictionary<string, string> map, string prefix)
{
this.SetParamSimple(map, prefix + "Module", this.Module);
this.SetParamSimple(map, prefix + "Operation", this.Operation);
this.SetParamSimple(map, prefix + "AccountResId", this.AccountResId);
this.SetParamSimple(map, prefix + "ImgUrl", this.ImgUrl);
this.SetParamSimple(map, prefix + "ImgData", this.ImgData);
}
}
}

View File

@@ -0,0 +1,50 @@
/*
* Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* 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.
*/
namespace TencentCloud.Ds.V20180523.Models
{
using Newtonsoft.Json;
using System.Collections.Generic;
using TencentCloud.Common;
public class CreateSealResponse : AbstractModel
{
/// <summary>
/// 签章ID
/// </summary>
[JsonProperty("SealResId")]
public string SealResId{ get; set; }
/// <summary>
/// 唯一请求 ID每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
/// </summary>
[JsonProperty("RequestId")]
public string RequestId{ get; set; }
/// <summary>
/// For internal usage only. DO NOT USE IT.
/// </summary>
internal override void ToMap(Dictionary<string, string> map, string prefix)
{
this.SetParamSimple(map, prefix + "SealResId", this.SealResId);
this.SetParamSimple(map, prefix + "RequestId", this.RequestId);
}
}
}

View File

@@ -0,0 +1,57 @@
/*
* Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* 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.
*/
namespace TencentCloud.Ds.V20180523.Models
{
using Newtonsoft.Json;
using System.Collections.Generic;
using TencentCloud.Common;
public class DeleteAccountRequest : AbstractModel
{
/// <summary>
/// 模块名AccountMng
/// </summary>
[JsonProperty("Module")]
public string Module{ get; set; }
/// <summary>
/// 操作名DeleteAccount
/// </summary>
[JsonProperty("Operation")]
public string Operation{ get; set; }
/// <summary>
/// 帐号ID列表
/// </summary>
[JsonProperty("AccountList")]
public string[] AccountList{ get; set; }
/// <summary>
/// For internal usage only. DO NOT USE IT.
/// </summary>
internal override void ToMap(Dictionary<string, string> map, string prefix)
{
this.SetParamSimple(map, prefix + "Module", this.Module);
this.SetParamSimple(map, prefix + "Operation", this.Operation);
this.SetParamArraySimple(map, prefix + "AccountList.", this.AccountList);
}
}
}

View File

@@ -0,0 +1,57 @@
/*
* Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* 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.
*/
namespace TencentCloud.Ds.V20180523.Models
{
using Newtonsoft.Json;
using System.Collections.Generic;
using TencentCloud.Common;
public class DeleteAccountResponse : AbstractModel
{
/// <summary>
/// 删除成功帐号ID列表
/// </summary>
[JsonProperty("DelSuccessList")]
public string[] DelSuccessList{ get; set; }
/// <summary>
/// 删除失败帐号ID列表
/// </summary>
[JsonProperty("DelFailedList")]
public string[] DelFailedList{ get; set; }
/// <summary>
/// 唯一请求 ID每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
/// </summary>
[JsonProperty("RequestId")]
public string RequestId{ get; set; }
/// <summary>
/// For internal usage only. DO NOT USE IT.
/// </summary>
internal override void ToMap(Dictionary<string, string> map, string prefix)
{
this.SetParamArraySimple(map, prefix + "DelSuccessList.", this.DelSuccessList);
this.SetParamArraySimple(map, prefix + "DelFailedList.", this.DelFailedList);
this.SetParamSimple(map, prefix + "RequestId", this.RequestId);
}
}
}

View File

@@ -0,0 +1,64 @@
/*
* Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* 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.
*/
namespace TencentCloud.Ds.V20180523.Models
{
using Newtonsoft.Json;
using System.Collections.Generic;
using TencentCloud.Common;
public class DeleteSealRequest : AbstractModel
{
/// <summary>
/// 模块名SealMng
/// </summary>
[JsonProperty("Module")]
public string Module{ get; set; }
/// <summary>
/// 操作名DeleteSeal
/// </summary>
[JsonProperty("Operation")]
public string Operation{ get; set; }
/// <summary>
/// 帐号ID
/// </summary>
[JsonProperty("AccountResId")]
public string AccountResId{ get; set; }
/// <summary>
/// 签章ID
/// </summary>
[JsonProperty("SealResId")]
public string SealResId{ get; set; }
/// <summary>
/// For internal usage only. DO NOT USE IT.
/// </summary>
internal override void ToMap(Dictionary<string, string> map, string prefix)
{
this.SetParamSimple(map, prefix + "Module", this.Module);
this.SetParamSimple(map, prefix + "Operation", this.Operation);
this.SetParamSimple(map, prefix + "AccountResId", this.AccountResId);
this.SetParamSimple(map, prefix + "SealResId", this.SealResId);
}
}
}

View File

@@ -0,0 +1,50 @@
/*
* Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* 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.
*/
namespace TencentCloud.Ds.V20180523.Models
{
using Newtonsoft.Json;
using System.Collections.Generic;
using TencentCloud.Common;
public class DeleteSealResponse : AbstractModel
{
/// <summary>
/// 签章ID
/// </summary>
[JsonProperty("SealResId")]
public string SealResId{ get; set; }
/// <summary>
/// 唯一请求 ID每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
/// </summary>
[JsonProperty("RequestId")]
public string RequestId{ get; set; }
/// <summary>
/// For internal usage only. DO NOT USE IT.
/// </summary>
internal override void ToMap(Dictionary<string, string> map, string prefix)
{
this.SetParamSimple(map, prefix + "SealResId", this.SealResId);
this.SetParamSimple(map, prefix + "RequestId", this.RequestId);
}
}
}

View File

@@ -0,0 +1,57 @@
/*
* Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* 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.
*/
namespace TencentCloud.Ds.V20180523.Models
{
using Newtonsoft.Json;
using System.Collections.Generic;
using TencentCloud.Common;
public class DescribeTaskStatusRequest : AbstractModel
{
/// <summary>
/// 模块名CommonMng
/// </summary>
[JsonProperty("Module")]
public string Module{ get; set; }
/// <summary>
/// 操作名DescribeTaskStatus
/// </summary>
[JsonProperty("Operation")]
public string Operation{ get; set; }
/// <summary>
/// 任务ID
/// </summary>
[JsonProperty("TaskId")]
public ulong? TaskId{ get; set; }
/// <summary>
/// For internal usage only. DO NOT USE IT.
/// </summary>
internal override void ToMap(Dictionary<string, string> map, string prefix)
{
this.SetParamSimple(map, prefix + "Module", this.Module);
this.SetParamSimple(map, prefix + "Operation", this.Operation);
this.SetParamSimple(map, prefix + "TaskId", this.TaskId);
}
}
}

View File

@@ -0,0 +1,57 @@
/*
* Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* 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.
*/
namespace TencentCloud.Ds.V20180523.Models
{
using Newtonsoft.Json;
using System.Collections.Generic;
using TencentCloud.Common;
public class DescribeTaskStatusResponse : AbstractModel
{
/// <summary>
/// 任务结果
/// </summary>
[JsonProperty("TaskResult")]
public string TaskResult{ get; set; }
/// <summary>
/// 任务类型010代表合同上传结果020代表合同下载结果
/// </summary>
[JsonProperty("TaskType")]
public string TaskType{ get; set; }
/// <summary>
/// 唯一请求 ID每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
/// </summary>
[JsonProperty("RequestId")]
public string RequestId{ get; set; }
/// <summary>
/// For internal usage only. DO NOT USE IT.
/// </summary>
internal override void ToMap(Dictionary<string, string> map, string prefix)
{
this.SetParamSimple(map, prefix + "TaskResult", this.TaskResult);
this.SetParamSimple(map, prefix + "TaskType", this.TaskType);
this.SetParamSimple(map, prefix + "RequestId", this.RequestId);
}
}
}

View File

@@ -0,0 +1,57 @@
/*
* Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* 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.
*/
namespace TencentCloud.Ds.V20180523.Models
{
using Newtonsoft.Json;
using System.Collections.Generic;
using TencentCloud.Common;
public class DownloadContractRequest : AbstractModel
{
/// <summary>
/// 模块名ContractMng
/// </summary>
[JsonProperty("Module")]
public string Module{ get; set; }
/// <summary>
/// 操作名DownloadContract
/// </summary>
[JsonProperty("Operation")]
public string Operation{ get; set; }
/// <summary>
/// 合同ID
/// </summary>
[JsonProperty("ContractResId")]
public string ContractResId{ get; set; }
/// <summary>
/// For internal usage only. DO NOT USE IT.
/// </summary>
internal override void ToMap(Dictionary<string, string> map, string prefix)
{
this.SetParamSimple(map, prefix + "Module", this.Module);
this.SetParamSimple(map, prefix + "Operation", this.Operation);
this.SetParamSimple(map, prefix + "ContractResId", this.ContractResId);
}
}
}

View File

@@ -0,0 +1,50 @@
/*
* Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* 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.
*/
namespace TencentCloud.Ds.V20180523.Models
{
using Newtonsoft.Json;
using System.Collections.Generic;
using TencentCloud.Common;
public class DownloadContractResponse : AbstractModel
{
/// <summary>
/// 任务ID
/// </summary>
[JsonProperty("TaskId")]
public long? TaskId{ get; set; }
/// <summary>
/// 唯一请求 ID每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
/// </summary>
[JsonProperty("RequestId")]
public string RequestId{ get; set; }
/// <summary>
/// For internal usage only. DO NOT USE IT.
/// </summary>
internal override void ToMap(Dictionary<string, string> map, string prefix)
{
this.SetParamSimple(map, prefix + "TaskId", this.TaskId);
this.SetParamSimple(map, prefix + "RequestId", this.RequestId);
}
}
}

View File

@@ -0,0 +1,64 @@
/*
* Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* 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.
*/
namespace TencentCloud.Ds.V20180523.Models
{
using Newtonsoft.Json;
using System.Collections.Generic;
using TencentCloud.Common;
public class SendVcodeRequest : AbstractModel
{
/// <summary>
/// 模块名VerifyCode
/// </summary>
[JsonProperty("Module")]
public string Module{ get; set; }
/// <summary>
/// 操作名SendVcode
/// </summary>
[JsonProperty("Operation")]
public string Operation{ get; set; }
/// <summary>
/// 合同ID
/// </summary>
[JsonProperty("ContractResId")]
public string ContractResId{ get; set; }
/// <summary>
/// 帐号ID
/// </summary>
[JsonProperty("AccountResId")]
public string AccountResId{ get; set; }
/// <summary>
/// For internal usage only. DO NOT USE IT.
/// </summary>
internal override void ToMap(Dictionary<string, string> map, string prefix)
{
this.SetParamSimple(map, prefix + "Module", this.Module);
this.SetParamSimple(map, prefix + "Operation", this.Operation);
this.SetParamSimple(map, prefix + "ContractResId", this.ContractResId);
this.SetParamSimple(map, prefix + "AccountResId", this.AccountResId);
}
}
}

View File

@@ -0,0 +1,43 @@
/*
* Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* 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.
*/
namespace TencentCloud.Ds.V20180523.Models
{
using Newtonsoft.Json;
using System.Collections.Generic;
using TencentCloud.Common;
public class SendVcodeResponse : AbstractModel
{
/// <summary>
/// 唯一请求 ID每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
/// </summary>
[JsonProperty("RequestId")]
public string RequestId{ get; set; }
/// <summary>
/// For internal usage only. DO NOT USE IT.
/// </summary>
internal override void ToMap(Dictionary<string, string> map, string prefix)
{
this.SetParamSimple(map, prefix + "RequestId", this.RequestId);
}
}
}

View File

@@ -0,0 +1,106 @@
/*
* Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* 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.
*/
namespace TencentCloud.Ds.V20180523.Models
{
using Newtonsoft.Json;
using System.Collections.Generic;
using TencentCloud.Common;
public class SignContractByCoordinateRequest : AbstractModel
{
/// <summary>
/// 模块名ContractMng
/// </summary>
[JsonProperty("Module")]
public string Module{ get; set; }
/// <summary>
/// 操作名SignContractByCoordinate
/// </summary>
[JsonProperty("Operation")]
public string Operation{ get; set; }
/// <summary>
/// 合同ID
/// </summary>
[JsonProperty("ContractResId")]
public string ContractResId{ get; set; }
/// <summary>
/// 帐户ID
/// </summary>
[JsonProperty("AccountResId")]
public string AccountResId{ get; set; }
/// <summary>
/// 签署坐标,坐标原点在文件左下角,坐标单位为磅,坐标不得超过合同文件边界
/// </summary>
[JsonProperty("SignLocations")]
public SignLocation[] SignLocations{ get; set; }
/// <summary>
/// 授权时间(由平台自动填充)
/// </summary>
[JsonProperty("AuthorizationTime")]
public string AuthorizationTime{ get; set; }
/// <summary>
/// 授权IP地址由平台自动填充
/// </summary>
[JsonProperty("Position")]
public string Position{ get; set; }
/// <summary>
/// 签章ID
/// </summary>
[JsonProperty("SealResId")]
public string SealResId{ get; set; }
/// <summary>
/// 选用证书类型1 表示RSA证书 2 表示国密证书, 参数不传时默认为1
/// </summary>
[JsonProperty("CertType")]
public long? CertType{ get; set; }
/// <summary>
/// 签名图片base64编码
/// </summary>
[JsonProperty("ImageData")]
public string ImageData{ get; set; }
/// <summary>
/// For internal usage only. DO NOT USE IT.
/// </summary>
internal override void ToMap(Dictionary<string, string> map, string prefix)
{
this.SetParamSimple(map, prefix + "Module", this.Module);
this.SetParamSimple(map, prefix + "Operation", this.Operation);
this.SetParamSimple(map, prefix + "ContractResId", this.ContractResId);
this.SetParamSimple(map, prefix + "AccountResId", this.AccountResId);
this.SetParamArrayObj(map, prefix + "SignLocations.", this.SignLocations);
this.SetParamSimple(map, prefix + "AuthorizationTime", this.AuthorizationTime);
this.SetParamSimple(map, prefix + "Position", this.Position);
this.SetParamSimple(map, prefix + "SealResId", this.SealResId);
this.SetParamSimple(map, prefix + "CertType", this.CertType);
this.SetParamSimple(map, prefix + "ImageData", this.ImageData);
}
}
}

View File

@@ -0,0 +1,43 @@
/*
* Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* 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.
*/
namespace TencentCloud.Ds.V20180523.Models
{
using Newtonsoft.Json;
using System.Collections.Generic;
using TencentCloud.Common;
public class SignContractByCoordinateResponse : AbstractModel
{
/// <summary>
/// 唯一请求 ID每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
/// </summary>
[JsonProperty("RequestId")]
public string RequestId{ get; set; }
/// <summary>
/// For internal usage only. DO NOT USE IT.
/// </summary>
internal override void ToMap(Dictionary<string, string> map, string prefix)
{
this.SetParamSimple(map, prefix + "RequestId", this.RequestId);
}
}
}

View File

@@ -0,0 +1,106 @@
/*
* Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* 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.
*/
namespace TencentCloud.Ds.V20180523.Models
{
using Newtonsoft.Json;
using System.Collections.Generic;
using TencentCloud.Common;
public class SignContractByKeywordRequest : AbstractModel
{
/// <summary>
/// 模块名ContractMng
/// </summary>
[JsonProperty("Module")]
public string Module{ get; set; }
/// <summary>
/// 操作名SignContractByKeyword
/// </summary>
[JsonProperty("Operation")]
public string Operation{ get; set; }
/// <summary>
/// 合同ID
/// </summary>
[JsonProperty("ContractResId")]
public string ContractResId{ get; set; }
/// <summary>
/// 账户ID
/// </summary>
[JsonProperty("AccountResId")]
public string AccountResId{ get; set; }
/// <summary>
/// 签署关键字,偏移坐标原点为关键字中心
/// </summary>
[JsonProperty("SignKeyword")]
public SignKeyword SignKeyword{ get; set; }
/// <summary>
/// 授权时间(由平台自动填充)
/// </summary>
[JsonProperty("AuthorizationTime")]
public string AuthorizationTime{ get; set; }
/// <summary>
/// 授权IP地址由平台自动填充
/// </summary>
[JsonProperty("Position")]
public string Position{ get; set; }
/// <summary>
/// 签章ID
/// </summary>
[JsonProperty("SealResId")]
public string SealResId{ get; set; }
/// <summary>
/// 选用证书类型1 表示RSA证书 2 表示国密证书, 参数不传时默认为1
/// </summary>
[JsonProperty("CertType")]
public long? CertType{ get; set; }
/// <summary>
/// 签名图片base64编码
/// </summary>
[JsonProperty("ImageData")]
public string ImageData{ get; set; }
/// <summary>
/// For internal usage only. DO NOT USE IT.
/// </summary>
internal override void ToMap(Dictionary<string, string> map, string prefix)
{
this.SetParamSimple(map, prefix + "Module", this.Module);
this.SetParamSimple(map, prefix + "Operation", this.Operation);
this.SetParamSimple(map, prefix + "ContractResId", this.ContractResId);
this.SetParamSimple(map, prefix + "AccountResId", this.AccountResId);
this.SetParamObj(map, prefix + "SignKeyword.", this.SignKeyword);
this.SetParamSimple(map, prefix + "AuthorizationTime", this.AuthorizationTime);
this.SetParamSimple(map, prefix + "Position", this.Position);
this.SetParamSimple(map, prefix + "SealResId", this.SealResId);
this.SetParamSimple(map, prefix + "CertType", this.CertType);
this.SetParamSimple(map, prefix + "ImageData", this.ImageData);
}
}
}

View File

@@ -0,0 +1,43 @@
/*
* Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* 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.
*/
namespace TencentCloud.Ds.V20180523.Models
{
using Newtonsoft.Json;
using System.Collections.Generic;
using TencentCloud.Common;
public class SignContractByKeywordResponse : AbstractModel
{
/// <summary>
/// 唯一请求 ID每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
/// </summary>
[JsonProperty("RequestId")]
public string RequestId{ get; set; }
/// <summary>
/// For internal usage only. DO NOT USE IT.
/// </summary>
internal override void ToMap(Dictionary<string, string> map, string prefix)
{
this.SetParamSimple(map, prefix + "RequestId", this.RequestId);
}
}
}

View File

@@ -0,0 +1,85 @@
/*
* Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* 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.
*/
namespace TencentCloud.Ds.V20180523.Models
{
using Newtonsoft.Json;
using System.Collections.Generic;
using TencentCloud.Common;
public class SignInfo : AbstractModel
{
/// <summary>
/// 账户ID
/// </summary>
[JsonProperty("AccountResId")]
public string AccountResId{ get; set; }
/// <summary>
/// 授权时间(上传合同可不传该参数)
/// </summary>
[JsonProperty("AuthorizationTime")]
public string AuthorizationTime{ get; set; }
/// <summary>
/// 授权IP地址上传合同可不传该参数
/// </summary>
[JsonProperty("Location")]
public string Location{ get; set; }
/// <summary>
/// 签章ID
/// </summary>
[JsonProperty("SealId")]
public string SealId{ get; set; }
/// <summary>
/// 签名图片优先级比SealId高
/// </summary>
[JsonProperty("ImageData")]
public string ImageData{ get; set; }
/// <summary>
/// 默认值1 表示RSA证书 2 表示国密证书, 参数不传时默认为1
/// </summary>
[JsonProperty("CertType")]
public long? CertType{ get; set; }
/// <summary>
/// 签名域的标签值
/// </summary>
[JsonProperty("SignLocation")]
public string SignLocation{ get; set; }
/// <summary>
/// For internal usage only. DO NOT USE IT.
/// </summary>
internal override void ToMap(Dictionary<string, string> map, string prefix)
{
this.SetParamSimple(map, prefix + "AccountResId", this.AccountResId);
this.SetParamSimple(map, prefix + "AuthorizationTime", this.AuthorizationTime);
this.SetParamSimple(map, prefix + "Location", this.Location);
this.SetParamSimple(map, prefix + "SealId", this.SealId);
this.SetParamSimple(map, prefix + "ImageData", this.ImageData);
this.SetParamSimple(map, prefix + "CertType", this.CertType);
this.SetParamSimple(map, prefix + "SignLocation", this.SignLocation);
}
}
}

View File

@@ -0,0 +1,71 @@
/*
* Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* 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.
*/
namespace TencentCloud.Ds.V20180523.Models
{
using Newtonsoft.Json;
using System.Collections.Generic;
using TencentCloud.Common;
public class SignKeyword : AbstractModel
{
/// <summary>
/// 关键字
/// </summary>
[JsonProperty("Keyword")]
public string Keyword{ get; set; }
/// <summary>
/// X轴偏移坐标
/// </summary>
[JsonProperty("OffsetCoordX")]
public string OffsetCoordX{ get; set; }
/// <summary>
/// Y轴偏移坐标
/// </summary>
[JsonProperty("OffsetCoordY")]
public string OffsetCoordY{ get; set; }
/// <summary>
/// 签章图片宽度
/// </summary>
[JsonProperty("ImageWidth")]
public string ImageWidth{ get; set; }
/// <summary>
/// 签章图片高度
/// </summary>
[JsonProperty("ImageHeight")]
public string ImageHeight{ get; set; }
/// <summary>
/// For internal usage only. DO NOT USE IT.
/// </summary>
internal override void ToMap(Dictionary<string, string> map, string prefix)
{
this.SetParamSimple(map, prefix + "Keyword", this.Keyword);
this.SetParamSimple(map, prefix + "OffsetCoordX", this.OffsetCoordX);
this.SetParamSimple(map, prefix + "OffsetCoordY", this.OffsetCoordY);
this.SetParamSimple(map, prefix + "ImageWidth", this.ImageWidth);
this.SetParamSimple(map, prefix + "ImageHeight", this.ImageHeight);
}
}
}

View File

@@ -0,0 +1,71 @@
/*
* Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* 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.
*/
namespace TencentCloud.Ds.V20180523.Models
{
using Newtonsoft.Json;
using System.Collections.Generic;
using TencentCloud.Common;
public class SignLocation : AbstractModel
{
/// <summary>
/// 签名域页数
/// </summary>
[JsonProperty("SignOnPage")]
public string SignOnPage{ get; set; }
/// <summary>
/// 签名域左下角X轴坐标轴
/// </summary>
[JsonProperty("SignLocationLBX")]
public string SignLocationLBX{ get; set; }
/// <summary>
/// 签名域左下角Y轴坐标轴
/// </summary>
[JsonProperty("SignLocationLBY")]
public string SignLocationLBY{ get; set; }
/// <summary>
/// 签名域右上角X轴坐标轴
/// </summary>
[JsonProperty("SignLocationRUX")]
public string SignLocationRUX{ get; set; }
/// <summary>
/// 签名域右上角Y轴坐标轴
/// </summary>
[JsonProperty("SignLocationRUY")]
public string SignLocationRUY{ get; set; }
/// <summary>
/// For internal usage only. DO NOT USE IT.
/// </summary>
internal override void ToMap(Dictionary<string, string> map, string prefix)
{
this.SetParamSimple(map, prefix + "SignOnPage", this.SignOnPage);
this.SetParamSimple(map, prefix + "SignLocationLBX", this.SignLocationLBX);
this.SetParamSimple(map, prefix + "SignLocationLBY", this.SignLocationLBY);
this.SetParamSimple(map, prefix + "SignLocationRUX", this.SignLocationRUX);
this.SetParamSimple(map, prefix + "SignLocationRUY", this.SignLocationRUY);
}
}
}