Skip to content

Commit 3e75459

Browse files
committed
false[antom-sdk-automation] automated change
1 parent 7332b62 commit 3e75459

File tree

182 files changed

+4873
-1814
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

182 files changed

+4873
-1814
lines changed
Lines changed: 31 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,33 @@
1-
namespace com.alipay.ams.api.entities;
1+
using System;
2+
using System.Collections.Generic;
3+
4+
namespace com.alipay.ams.api.entities
5+
{
26

37
public class AccountBalance
4-
{
5-
public string AccountNo { get; set; }
6-
public string Currency { get; set; }
7-
public Amount AvailableBalance { get; set; }
8-
public Amount FrozenBalance { get; set; }
9-
public Amount TotalBalance { get; set; }
10-
}
8+
{
9+
10+
public AccountBalance() { }
11+
12+
13+
14+
public AccountBalance( error [AccountNo | string | AccountBalance] accountNo , error [Currency | string | AccountBalance] currency , error [AvailableBalance | Amount | AccountBalance] availableBalance , error [FrozenBalance | Amount | AccountBalance] frozenBalance , error [TotalBalance | Amount | AccountBalance] totalBalance)
15+
{
16+
this.AccountNo = accountNo;
17+
this.Currency = currency;
18+
this.AvailableBalance = availableBalance;
19+
this.FrozenBalance = frozenBalance;
20+
this.TotalBalance = totalBalance;
21+
}
22+
23+
public error [AccountNo | string | AccountBalance] AccountNo { get; set; }
24+
public error [Currency | string | AccountBalance] Currency { get; set; }
25+
public error [AvailableBalance | Amount | AccountBalance] AvailableBalance { get; set; }
26+
public error [FrozenBalance | Amount | AccountBalance] FrozenBalance { get; set; }
27+
public error [TotalBalance | Amount | AccountBalance] TotalBalance { get; set; }
28+
29+
30+
31+
}
32+
33+
}
Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
1-
namespace com.alipay.ams.api.entities;
1+
using System;
2+
using System.Collections.Generic;
3+
4+
namespace com.alipay.ams.api.entities
5+
{
26

37
public enum AccountHolderType
4-
{
5-
INDIVIDUAL,
6-
ENTERPRISE
7-
}
8+
{
9+
INDIVIDUAL,
10+
ENTERPRISE,
11+
}
12+
}
Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
1-
namespace com.alipay.ams.api.entities;
1+
using System;
2+
using System.Collections.Generic;
3+
4+
namespace com.alipay.ams.api.entities
5+
{
26

37
public enum AccountType
4-
{
5-
CHECKING,
6-
FIXED_DEPOSIT,
7-
}
8+
{
9+
CHECKING,
10+
FIXED_DEPOSIT,
11+
}
12+
}
Lines changed: 32 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,37 @@
1+
using System;
2+
using System.Collections.Generic;
3+
14
namespace com.alipay.ams.api.entities
25
{
3-
public class AcquirerInfo
6+
7+
public class AcquirerInfo
48
{
5-
public string AcquirerName { get; set; }
6-
public string ReferenceRequestId { get; set; }
7-
public string AcquirerTransactionId { get; set; }
8-
public string AcquirerMerchantId { get; set; }
9-
public string AcquirerResultCode { get; set; }
10-
public string AcquirerResultMessage { get; set; }
11-
public string AcquirerReasonDescription { get; set; }
9+
10+
public AcquirerInfo() { }
11+
12+
13+
14+
public AcquirerInfo( error [AcquirerName | string | AcquirerInfo] acquirerName , error [ReferenceRequestId | string | AcquirerInfo] referenceRequestId , error [AcquirerTransactionId | string | AcquirerInfo] acquirerTransactionId , error [AcquirerMerchantId | string | AcquirerInfo] acquirerMerchantId , error [AcquirerResultCode | string | AcquirerInfo] acquirerResultCode , error [AcquirerResultMessage | string | AcquirerInfo] acquirerResultMessage , error [AcquirerMerchantName | string | AcquirerInfo] acquirerMerchantName)
15+
{
16+
this.AcquirerName = acquirerName;
17+
this.ReferenceRequestId = referenceRequestId;
18+
this.AcquirerTransactionId = acquirerTransactionId;
19+
this.AcquirerMerchantId = acquirerMerchantId;
20+
this.AcquirerResultCode = acquirerResultCode;
21+
this.AcquirerResultMessage = acquirerResultMessage;
22+
this.AcquirerMerchantName = acquirerMerchantName;
23+
}
24+
25+
public error [AcquirerName | string | AcquirerInfo] AcquirerName { get; set; }
26+
public error [ReferenceRequestId | string | AcquirerInfo] ReferenceRequestId { get; set; }
27+
public error [AcquirerTransactionId | string | AcquirerInfo] AcquirerTransactionId { get; set; }
28+
public error [AcquirerMerchantId | string | AcquirerInfo] AcquirerMerchantId { get; set; }
29+
public error [AcquirerResultCode | string | AcquirerInfo] AcquirerResultCode { get; set; }
30+
public error [AcquirerResultMessage | string | AcquirerInfo] AcquirerResultMessage { get; set; }
31+
public error [AcquirerMerchantName | string | AcquirerInfo] AcquirerMerchantName { get; set; }
32+
33+
1234

1335
}
14-
}
36+
37+
}
Lines changed: 32 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,37 @@
1-
using System;
1+
using System;
2+
using System.Collections.Generic;
3+
24
namespace com.alipay.ams.api.entities
35
{
4-
public class Address
6+
7+
public class Address
58
{
6-
public string Region { get; set; }
7-
public string State { get; set; }
8-
public string City { get; set; }
9-
public string Address1 { get; set; }
10-
public string Address2 { get; set; }
11-
public string ZipCode { get; set; }
12-
public string Label { get; set; }
9+
10+
public Address() { }
11+
12+
13+
14+
public Address( error [Region | string | Address] region , error [State | string | Address] state , error [City | string | Address] city , error [Address1 | string | Address] address1 , error [Address2 | string | Address] address2 , error [ZipCode | string | Address] zipCode , error [Label | string | Address] label)
15+
{
16+
this.Region = region;
17+
this.State = state;
18+
this.City = city;
19+
this.Address1 = address1;
20+
this.Address2 = address2;
21+
this.ZipCode = zipCode;
22+
this.Label = label;
23+
}
24+
25+
public error [Region | string | Address] Region { get; set; }
26+
public error [State | string | Address] State { get; set; }
27+
public error [City | string | Address] City { get; set; }
28+
public error [Address1 | string | Address] Address1 { get; set; }
29+
public error [Address2 | string | Address] Address2 { get; set; }
30+
public error [ZipCode | string | Address] ZipCode { get; set; }
31+
public error [Label | string | Address] Label { get; set; }
32+
33+
34+
1335
}
36+
1437
}
Lines changed: 23 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,31 @@
1+
using System;
2+
using System.Collections.Generic;
3+
14
namespace com.alipay.ams.api.entities
25
{
3-
public class AgreementInfo
6+
7+
public class AgreementInfo
48
{
59

6-
public string AuthState { get; set; }
10+
public AgreementInfo() { }
711

8-
public string UserLoginId { get; set; }
912

10-
public string UserLoginType { get; set; }
13+
14+
public AgreementInfo( error [AuthState | string | AgreementInfo] authState , error [UserLoginId | string | AgreementInfo] userLoginId , error [UserLoginType | string | AgreementInfo] userLoginType , error [DisplayUserLoginId | string | AgreementInfo] displayUserLoginId)
15+
{
16+
this.AuthState = authState;
17+
this.UserLoginId = userLoginId;
18+
this.UserLoginType = userLoginType;
19+
this.DisplayUserLoginId = displayUserLoginId;
20+
}
21+
22+
public error [AuthState | string | AgreementInfo] AuthState { get; set; }
23+
public error [UserLoginId | string | AgreementInfo] UserLoginId { get; set; }
24+
public error [UserLoginType | string | AgreementInfo] UserLoginType { get; set; }
25+
public error [DisplayUserLoginId | string | AgreementInfo] DisplayUserLoginId { get; set; }
26+
1127

12-
public string DisplayUserLoginId { get; set; }
28+
1329
}
14-
}
30+
31+
}
Lines changed: 20 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,31 @@
1-

2-
1+
using System;
2+
using System.Collections.Generic;
3+
34
namespace com.alipay.ams.api.entities
45
{
5-
public class Amount
6-
{
7-
public Amount() { }
86

7+
public class Amount
8+
{
99

10-
public string Currency { get; set; }
10+
public Amount() { }
1111

12+
public Amount(string currency, long amountInCents){
13+
this.Currency = currency;
14+
this.Value = amountInCents.ToString();
15+
}
1216

13-
public string Value { get; set; }
1417

15-
public Amount(string currency, string amountInCents)
16-
{
17-
this.Currency = currency;
18-
this.Value = amountInCents;
19-
}
20-
public Amount(string currency, long amountInCents)
18+
public Amount( error [Currency | string | Amount] currency , error [Value | string | Amount] value)
2119
{
2220
this.Currency = currency;
23-
this.Value = amountInCents.ToString();
21+
this.Value = value;
2422
}
23+
24+
public error [Currency | string | Amount] Currency { get; set; }
25+
public error [Value | string | Amount] Value { get; set; }
26+
27+
28+
2529
}
26-
}
30+
31+
}
Lines changed: 25 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,29 @@
1+
using System;
2+
using System.Collections.Generic;
3+
14
namespace com.alipay.ams.api.entities
25
{
3-
public class AmountLimit
6+
7+
public class AmountLimit
48
{
5-
public Amount MaxAmount {get;set;}
6-
public Amount MinAmount {get;set;}
7-
public Amount RemainAmount {get;set;}
9+
10+
public AmountLimit() { }
11+
12+
13+
14+
public AmountLimit( error [MaxAmount | string | AmountLimit] maxAmount , error [MinAmount | string | AmountLimit] minAmount , error [RemainAmount | string | AmountLimit] remainAmount)
15+
{
16+
this.MaxAmount = maxAmount;
17+
this.MinAmount = minAmount;
18+
this.RemainAmount = remainAmount;
19+
}
20+
21+
public error [MaxAmount | string | AmountLimit] MaxAmount { get; set; }
22+
public error [MinAmount | string | AmountLimit] MinAmount { get; set; }
23+
public error [RemainAmount | string | AmountLimit] RemainAmount { get; set; }
24+
25+
26+
827
}
9-
}
28+
29+
}
Lines changed: 14 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,16 @@
1-
namespace com.alipay.ams.api.entities;
1+
using System;
2+
using System.Collections.Generic;
3+
4+
namespace com.alipay.ams.api.entities
5+
{
26

37
public enum AssociationType
4-
{
5-
LEGAL_REPRESENTATIVE,
6-
UBO,
7-
CONTACT,
8-
DIRECTOR,
9-
AUTHORIZER,
10-
BOARD_MEMBER,
11-
}
8+
{
9+
LEGAL_REPRESENTATIVE,
10+
UBO,
11+
CONTACT,
12+
DIRECTOR,
13+
AUTHORIZER,
14+
BOARD_MEMBER,
15+
}
16+
}
Lines changed: 23 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,31 @@
1-
using System;
1+
using System;
2+
using System.Collections.Generic;
3+
24
namespace com.alipay.ams.api.entities
35
{
4-
public class Attachment
6+
7+
public class Attachment
58
{
6-
public AttachmentType AttachmentType { get; set; }
79

8-
public string File { get; set; }
10+
public Attachment() { }
911

10-
public string AttachmentName { get; set; }
1112

12-
public string FileKey { get; set; }
13+
14+
public Attachment( error [AttachmentType | string | Attachment] attachmentType , error [File | string | Attachment] file , error [AttachmentName | string | Attachment] attachmentName , error [FileKey | string | Attachment] fileKey)
15+
{
16+
this.AttachmentType = attachmentType;
17+
this.File = file;
18+
this.AttachmentName = attachmentName;
19+
this.FileKey = fileKey;
20+
}
21+
22+
public error [AttachmentType | string | Attachment] AttachmentType { get; set; }
23+
public error [File | string | Attachment] File { get; set; }
24+
public error [AttachmentName | string | Attachment] AttachmentName { get; set; }
25+
public error [FileKey | string | Attachment] FileKey { get; set; }
26+
27+
28+
1329
}
30+
1431
}

0 commit comments

Comments
 (0)