Skip to content

Commit a41c578

Browse files
committed
false[antom-sdk-automation] automated change
1 parent 9c8f2c4 commit a41c578

File tree

181 files changed

+5069
-0
lines changed

Some content is hidden

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

181 files changed

+5069
-0
lines changed
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
2+
namespace com.alipay.ams.api.entities
3+
{
4+
5+
public class AccountBalance
6+
{
7+
8+
public AccountBalance() { }
9+
10+
public AccountBalance( string accountNo , string currency , Amount availableBalance , Amount frozenBalance , Amount totalBalance)
11+
{
12+
this.AccountNo = accountNo;
13+
this.Currency = currency;
14+
this.AvailableBalance = availableBalance;
15+
this.FrozenBalance = frozenBalance;
16+
this.TotalBalance = totalBalance;
17+
}
18+
19+
public string AccountNo { get; set; }
20+
public string Currency { get; set; }
21+
public Amount AvailableBalance { get; set; }
22+
public Amount FrozenBalance { get; set; }
23+
public Amount TotalBalance { get; set; }
24+
25+
26+
27+
}
28+
29+
}
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
2+
namespace com.alipay.ams.api.entities
3+
{
4+
5+
public enum AccountHolderType
6+
{
7+
INDIVIDUAL,
8+
ENTERPRISE,
9+
}
10+
}
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
2+
namespace com.alipay.ams.api.entities
3+
{
4+
5+
public enum AccountType
6+
{
7+
CHECKING,
8+
FIXED_DEPOSIT,
9+
}
10+
}
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
2+
namespace com.alipay.ams.api.entities
3+
{
4+
5+
public class AcquirerInfo
6+
{
7+
8+
public AcquirerInfo() { }
9+
10+
public AcquirerInfo( string acquirerName , string referenceRequestId , string acquirerTransactionId , string acquirerMerchantId , string acquirerResultCode , string acquirerResultMessage)
11+
{
12+
this.AcquirerName = acquirerName;
13+
this.ReferenceRequestId = referenceRequestId;
14+
this.AcquirerTransactionId = acquirerTransactionId;
15+
this.AcquirerMerchantId = acquirerMerchantId;
16+
this.AcquirerResultCode = acquirerResultCode;
17+
this.AcquirerResultMessage = acquirerResultMessage;
18+
}
19+
20+
public string AcquirerName { get; set; }
21+
public string ReferenceRequestId { get; set; }
22+
public string AcquirerTransactionId { get; set; }
23+
public string AcquirerMerchantId { get; set; }
24+
public string AcquirerResultCode { get; set; }
25+
public string AcquirerResultMessage { get; set; }
26+
27+
28+
29+
}
30+
31+
}
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
2+
namespace com.alipay.ams.api.entities
3+
{
4+
5+
public class Address
6+
{
7+
8+
public Address() { }
9+
10+
public Address( string region , string state , string city , string address1 , string address2 , string zipCode , string label)
11+
{
12+
this.Region = region;
13+
this.State = state;
14+
this.City = city;
15+
this.Address1 = address1;
16+
this.Address2 = address2;
17+
this.ZipCode = zipCode;
18+
this.Label = label;
19+
}
20+
21+
public string Region { get; set; }
22+
public string State { get; set; }
23+
public string City { get; set; }
24+
public string Address1 { get; set; }
25+
public string Address2 { get; set; }
26+
public string ZipCode { get; set; }
27+
public string Label { get; set; }
28+
29+
30+
31+
}
32+
33+
}
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
2+
namespace com.alipay.ams.api.entities
3+
{
4+
5+
public class AgreementInfo
6+
{
7+
8+
public AgreementInfo() { }
9+
10+
public AgreementInfo( string authState , string userLoginId , string userLoginType , string displayUserLoginId)
11+
{
12+
this.AuthState = authState;
13+
this.UserLoginId = userLoginId;
14+
this.UserLoginType = userLoginType;
15+
this.DisplayUserLoginId = displayUserLoginId;
16+
}
17+
18+
public string AuthState { get; set; }
19+
public string UserLoginId { get; set; }
20+
public string UserLoginType { get; set; }
21+
public string DisplayUserLoginId { get; set; }
22+
23+
24+
25+
}
26+
27+
}
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
2+
namespace com.alipay.ams.api.entities
3+
{
4+
5+
public class Amount
6+
{
7+
8+
public Amount() { }
9+
10+
public Amount( string currency , string value)
11+
{
12+
this.Currency = currency;
13+
this.Value = value;
14+
}
15+
16+
public string Currency { get; set; }
17+
public string Value { get; set; }
18+
19+
20+
21+
}
22+
23+
}
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
2+
namespace com.alipay.ams.api.entities
3+
{
4+
5+
public class AmountLimit
6+
{
7+
8+
public AmountLimit() { }
9+
10+
public AmountLimit( string maxAmount , string minAmount , string remainAmount)
11+
{
12+
this.MaxAmount = maxAmount;
13+
this.MinAmount = minAmount;
14+
this.RemainAmount = remainAmount;
15+
}
16+
17+
public string MaxAmount { get; set; }
18+
public string MinAmount { get; set; }
19+
public string RemainAmount { get; set; }
20+
21+
22+
23+
}
24+
25+
}
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
2+
namespace com.alipay.ams.api.entities
3+
{
4+
5+
public enum AssociationType
6+
{
7+
LEGAL_REPRESENTATIVE,
8+
UBO,
9+
CONTACT,
10+
DIRECTOR,
11+
AUTHORIZER,
12+
BOARD_MEMBER,
13+
}
14+
}
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
2+
namespace com.alipay.ams.api.entities
3+
{
4+
5+
public class Attachment
6+
{
7+
8+
public Attachment() { }
9+
10+
public Attachment( string attachmentType , string file , string attachmentName , string fileKey)
11+
{
12+
this.AttachmentType = attachmentType;
13+
this.File = file;
14+
this.AttachmentName = attachmentName;
15+
this.FileKey = fileKey;
16+
}
17+
18+
public string AttachmentType { get; set; }
19+
public string File { get; set; }
20+
public string AttachmentName { get; set; }
21+
public string FileKey { get; set; }
22+
23+
24+
25+
}
26+
27+
}

0 commit comments

Comments
 (0)