本文整理汇总了C#中Braintree.NodeWrapper.GetDecimal方法的典型用法代码示例。如果您正苦于以下问题:C# NodeWrapper.GetDecimal方法的具体用法?C# NodeWrapper.GetDecimal怎么用?C# NodeWrapper.GetDecimal使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Braintree.NodeWrapper
的用法示例。
在下文中一共展示了NodeWrapper.GetDecimal方法的12个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: SubscriptionStatusEvent
public SubscriptionStatusEvent(NodeWrapper node)
{
if (node == null) return;
Price = node.GetDecimal("price");
Balance = node.GetDecimal("balance");
Status = (SubscriptionStatus)CollectionUtil.Find(SubscriptionStatus.STATUSES, node.GetString("status"), SubscriptionStatus.UNRECOGNIZED);
Timestamp = node.GetDateTime("timestamp");
Source = (SubscriptionSource)CollectionUtil.Find(SubscriptionSource.ALL, node.GetString("subscription-source"), SubscriptionSource.UNRECOGNIZED);
User = node.GetString("user");
}
示例2: Plan
public Plan(NodeWrapper node)
{
if (node == null) return;
BillingDayOfMonth = node.GetInteger("billing-day-of-month");
BillingFrequency = node.GetInteger("billing-frequency");
CurrencyIsoCode = node.GetString("currency-iso-code");
Description = node.GetString("description");
Id = node.GetString("id");
Name = node.GetString("name");
NumberOfBillingCycles = node.GetInteger("number-of-billing-cycles");
Price = node.GetDecimal("price");
TrialPeriod = node.GetBoolean("trial-period");
TrialDuration = node.GetInteger("trial-duration");
string trialDurationUnitStr = node.GetString("trial-duration-unit");
if (trialDurationUnitStr != null) {
TrialDurationUnit = (PlanDurationUnit) CollectionUtil.Find(PlanDurationUnit.ALL, trialDurationUnitStr, PlanDurationUnit.UNRECOGNIZED);
}
AddOns = new List<AddOn> ();
foreach (var addOnResponse in node.GetList("add-ons/add-on")) {
AddOns.Add(new AddOn(addOnResponse));
}
Discounts = new List<Discount> ();
foreach (var discountResponse in node.GetList("discounts/discount")) {
Discounts.Add(new Discount(discountResponse));
}
}
示例3: Modification
internal Modification(NodeWrapper node)
{
Amount = node.GetDecimal("amount");
Id = node.GetString("id");
NeverExpires = node.GetBoolean("never-expires");
NumberOfBillingCycles = node.GetInteger("number-of-billing-cycles");
Quantity = node.GetInteger("quantity");
}
示例4: DisbursementDetails
protected internal DisbursementDetails(NodeWrapper node)
{
SettlementAmount = node.GetDecimal("settlement-amount");
SettlementCurrencyIsoCode = node.GetString("settlement-currency-iso-code");
SettlementCurrencyExchangeRate = node.GetString("settlement-currency-exchange-rate");
FundsHeld = node.GetBoolean("funds-held");
Success = node.GetBoolean("success");
DisbursementDate = node.GetDateTime("disbursement-date");
}
示例5: StatusEvent
public StatusEvent(NodeWrapper node)
{
if (node == null) return;
Amount = node.GetDecimal("amount");
Status = (TransactionStatus)CollectionUtil.Find(TransactionStatus.ALL, node.GetString("status"), TransactionStatus.UNRECOGNIZED);
Timestamp = node.GetDateTime("timestamp");
Source = (TransactionSource)CollectionUtil.Find(TransactionSource.ALL, node.GetString("transaction-source"), TransactionSource.UNRECOGNIZED);
User = node.GetString("user");
}
示例6: Dispute
public Dispute(NodeWrapper node)
{
Amount = node.GetDecimal("amount");
ReceivedDate = node.GetDateTime("received-date");
ReplyByDate = node.GetDateTime("reply-by-date");
Reason = (DisputeReason)CollectionUtil.Find(DisputeReason.ALL, node.GetString("reason"), DisputeReason.GENERAL);
Status = (DisputeStatus)CollectionUtil.Find(DisputeStatus.ALL, node.GetString("status"), DisputeStatus.UNRECOGNIZED);
CurrencyIsoCode = node.GetString("currency-iso-code");
Id = node.GetString("id");
}
示例7: Dispute
public Dispute(NodeWrapper node)
{
Amount = node.GetDecimal("amount");
ReceivedDate = node.GetDateTime("received-date");
ReplyByDate = node.GetDateTime("reply-by-date");
DateOpened = node.GetDateTime("date-opened");
DateWon = node.GetDateTime("date-won");
Reason = (DisputeReason)CollectionUtil.Find(DisputeReason.ALL, node.GetString("reason"), DisputeReason.GENERAL);
Status = (DisputeStatus)CollectionUtil.Find(DisputeStatus.ALL, node.GetString("status"), DisputeStatus.UNRECOGNIZED);
Kind = (DisputeKind)CollectionUtil.Find(DisputeKind.ALL, node.GetString("kind"), DisputeKind.UNRECOGNIZED);
CurrencyIsoCode = node.GetString("currency-iso-code");
Id = node.GetString("id");
TransactionDetails = new TransactionDetails(node.GetNode("transaction"));
}
示例8: Modification
protected Modification(NodeWrapper node)
{
Amount = node.GetDecimal("amount");
CreatedAt = node.GetDateTime("created-at");
Description = node.GetString("description");
Id = node.GetString("id");
Kind = node.GetString("kind");
MerchantId = node.GetString("merchant-id");
Name = node.GetString("name");
NeverExpires = node.GetBoolean("never-expires");
NumberOfBillingCycles = node.GetInteger("number-of-billing-cycles");
Quantity = node.GetInteger("quantity");
UpdatedAt = node.GetDateTime("updated-at");
}
示例9: Disbursement
public Disbursement(NodeWrapper node, BraintreeGateway gateway)
{
Id = node.GetString("id");
Amount = node.GetDecimal("amount");
ExceptionMessage = node.GetString("exception-message");
DisbursementDate = node.GetDateTime("disbursement-date");
FollowUpAction = node.GetString("follow-up-action");
MerchantAccount = new MerchantAccount(node.GetNode("merchant-account"));
TransactionIds = new List<string>();
foreach (var stringNode in node.GetList("transaction-ids/item"))
{
TransactionIds.Add(stringNode.GetString("."));
}
Success = node.GetBoolean("success");
Retry = node.GetBoolean("retry");
this.gateway = gateway;
}
示例10: Subscription
public Subscription(NodeWrapper node, BraintreeService service)
{
Balance = node.GetDecimal("balance");
BillingDayOfMonth = node.GetInteger("billing-day-of-month");
BillingPeriodEndDate = node.GetDateTime("billing-period-end-date");
BillingPeriodStartDate = node.GetDateTime("billing-period-start-date");
CurrentBillingCycle = node.GetInteger("current-billing-cycle");
DaysPastDue = node.GetInteger("days-past-due");
Descriptor = new Descriptor(node.GetNode("descriptor"));
FailureCount = node.GetInteger("failure-count");
FirstBillingDate = node.GetDateTime("first-billing-date");
Id = node.GetString("id");
NextBillAmount = node.GetDecimal("next-bill-amount");
NextBillingDate = node.GetDateTime("next-billing-date");
NextBillingPeriodAmount = node.GetDecimal("next-billing-period-amount");
NeverExpires = node.GetBoolean("never-expires");
NumberOfBillingCycles = node.GetInteger("number-of-billing-cycles");
PaymentMethodToken = node.GetString("payment-method-token");
PaidThroughDate = node.GetDateTime("paid-through-date");
PlanId = node.GetString("plan-id");
Price = node.GetDecimal("price");
Status = (SubscriptionStatus)CollectionUtil.Find(SubscriptionStatus.STATUSES, node.GetString("status"), SubscriptionStatus.UNRECOGNIZED);
HasTrialPeriod = node.GetBoolean("trial-period");
TrialDuration = node.GetInteger("trial-duration");
String trialDurationUnitStr = node.GetString("trial-duration-unit");
if (trialDurationUnitStr != null) {
TrialDurationUnit = (SubscriptionDurationUnit)CollectionUtil.Find(SubscriptionDurationUnit.ALL, trialDurationUnitStr, SubscriptionDurationUnit.UNRECOGNIZED);
}
MerchantAccountId = node.GetString("merchant-account-id");
AddOns = new List<AddOn> ();
foreach (NodeWrapper addOnResponse in node.GetList("add-ons/add-on")) {
AddOns.Add(new AddOn(addOnResponse));
}
Discounts = new List<Discount> ();
foreach (NodeWrapper discountResponse in node.GetList("discounts/discount")) {
Discounts.Add(new Discount(discountResponse));
}
Transactions = new List<Transaction> ();
foreach (NodeWrapper transactionResponse in node.GetList("transactions/transaction")) {
Transactions.Add(new Transaction(transactionResponse, service));
}
}
示例11: Transaction
internal Transaction(NodeWrapper node, BraintreeService service)
{
Service = service;
if (node == null) return;
Id = node.GetString("id");
Amount = node.GetDecimal("amount");
AvsErrorResponseCode = node.GetString("avs-error-response-code");
AvsPostalCodeResponseCode = node.GetString("avs-postal-code-response-code");
AvsStreetAddressResponseCode = node.GetString("avs-street-address-response-code");
GatewayRejectionReason = (TransactionGatewayRejectionReason)CollectionUtil.Find(
TransactionGatewayRejectionReason.ALL,
node.GetString("gateway-rejection-reason"),
null
);
OrderId = node.GetString("order-id");
Status = (TransactionStatus)CollectionUtil.Find(TransactionStatus.ALL, node.GetString("status"), TransactionStatus.UNRECOGNIZED);
List<NodeWrapper> statusNodes = node.GetList("status-history/status-event");
StatusHistory = new StatusEvent[statusNodes.Count];
for (int i = 0; i < statusNodes.Count; i++)
{
StatusHistory[i] = new StatusEvent(statusNodes[i]);
}
Type = (TransactionType)CollectionUtil.Find(TransactionType.ALL, node.GetString("type"), TransactionType.UNRECOGNIZED);
MerchantAccountId = node.GetString("merchant-account-id");
ProcessorAuthorizationCode = node.GetString("processor-authorization-code");
ProcessorResponseCode = node.GetString("processor-response-code");
ProcessorResponseText = node.GetString("processor-response-text");
PurchaseOrderNumber = node.GetString("purchase-order-number");
RefundedTransactionId = node.GetString("refunded-transaction-id");
#pragma warning disable 0618
RefundId = node.GetString("refund-id");
#pragma warning restore 0618
RefundIds = node.GetStrings("refund-ids/*");
SettlementBatchId = node.GetString("settlement-batch-id");
SubscriptionId = node.GetString("subscription-id");
TaxAmount = node.GetDecimal("tax-amount");
TaxExempt = node.GetBoolean("tax-exempt");
CustomFields = node.GetDictionary("custom-fields");
CreditCard = new CreditCard(node.GetNode("credit-card"), service);
Subscription = new Subscription(node.GetNode("subscription"), service);
Customer = new Customer(node.GetNode("customer"), service);
CurrencyIsoCode = node.GetString("currency-iso-code");
CvvResponseCode = node.GetString("cvv-response-code");
Descriptor = new Descriptor(node.GetNode("descriptor"));
BillingAddress = new Address(node.GetNode("billing"));
ShippingAddress = new Address(node.GetNode("shipping"));
CreatedAt = node.GetDateTime("created-at");
UpdatedAt = node.GetDateTime("updated-at");
AddOns = new List<AddOn>();
foreach (NodeWrapper addOnResponse in node.GetList("add-ons/add-on")) {
AddOns.Add(new AddOn(addOnResponse));
}
Discounts = new List<Discount>();
foreach (NodeWrapper discountResponse in node.GetList("discounts/discount")) {
Discounts.Add(new Discount(discountResponse));
}
}
示例12: Transaction
protected internal Transaction(NodeWrapper node, BraintreeGateway gateway)
{
Gateway = gateway;
if (node == null) return;
Id = node.GetString("id");
Amount = node.GetDecimal("amount");
AvsErrorResponseCode = node.GetString("avs-error-response-code");
AvsPostalCodeResponseCode = node.GetString("avs-postal-code-response-code");
AvsStreetAddressResponseCode = node.GetString("avs-street-address-response-code");
GatewayRejectionReason = (TransactionGatewayRejectionReason)CollectionUtil.Find(
TransactionGatewayRejectionReason.ALL,
node.GetString("gateway-rejection-reason"),
TransactionGatewayRejectionReason.UNRECOGNIZED
);
PaymentInstrumentType = (PaymentInstrumentType)CollectionUtil.Find(
PaymentInstrumentType.ALL,
node.GetString("payment-instrument-type"),
PaymentInstrumentType.UNKNOWN
);
Channel = node.GetString("channel");
OrderId = node.GetString("order-id");
Status = (TransactionStatus)CollectionUtil.Find(TransactionStatus.ALL, node.GetString("status"), TransactionStatus.UNRECOGNIZED);
EscrowStatus = (TransactionEscrowStatus)CollectionUtil.Find(
TransactionEscrowStatus.ALL,
node.GetString("escrow-status"),
TransactionEscrowStatus.UNRECOGNIZED
);
List<NodeWrapper> statusNodes = node.GetList("status-history/status-event");
StatusHistory = new StatusEvent[statusNodes.Count];
for (int i = 0; i < statusNodes.Count; i++)
{
StatusHistory[i] = new StatusEvent(statusNodes[i]);
}
Type = (TransactionType)CollectionUtil.Find(TransactionType.ALL, node.GetString("type"), TransactionType.UNRECOGNIZED);
MerchantAccountId = node.GetString("merchant-account-id");
ProcessorAuthorizationCode = node.GetString("processor-authorization-code");
ProcessorResponseCode = node.GetString("processor-response-code");
ProcessorResponseText = node.GetString("processor-response-text");
ProcessorSettlementResponseCode = node.GetString("processor-settlement-response-code");
ProcessorSettlementResponseText = node.GetString("processor-settlement-response-text");
AdditionalProcessorResponse = node.GetString("additional-processor-response");
VoiceReferralNumber = node.GetString("voice-referral-number");
PurchaseOrderNumber = node.GetString("purchase-order-number");
Recurring = node.GetBoolean("recurring");
RefundedTransactionId = node.GetString("refunded-transaction-id");
#pragma warning disable 0618
RefundId = node.GetString("refund-id");
#pragma warning restore 0618
RefundIds = node.GetStrings("refund-ids/*");
PartialSettlementTransactionIds = node.GetStrings("partial-settlement-transaction-ids/*");
AuthorizedTransactionId = node.GetString("authorized-transaction-id");
SettlementBatchId = node.GetString("settlement-batch-id");
PlanId = node.GetString("plan-id");
SubscriptionId = node.GetString("subscription-id");
TaxAmount = node.GetDecimal("tax-amount");
TaxExempt = node.GetBoolean("tax-exempt");
CustomFields = node.GetDictionary("custom-fields");
CreditCard = new CreditCard(node.GetNode("credit-card"), gateway);
Subscription = new Subscription(node.GetNode("subscription"), gateway);
Customer = new Customer(node.GetNode("customer"), gateway);
CurrencyIsoCode = node.GetString("currency-iso-code");
CvvResponseCode = node.GetString("cvv-response-code");
Descriptor = new Descriptor(node.GetNode("descriptor"));
ServiceFeeAmount = node.GetDecimal("service-fee-amount");
DisbursementDetails = new DisbursementDetails(node.GetNode("disbursement-details"));
var paypalNode = node.GetNode("paypal");
if (paypalNode != null)
{
PayPalDetails = new PayPalDetails(paypalNode);
}
var coinbaseNode = node.GetNode("coinbase-account");
if (coinbaseNode != null)
{
CoinbaseDetails = new CoinbaseDetails(coinbaseNode);
}
var applePayNode = node.GetNode("apple-pay");
if (applePayNode != null)
{
ApplePayDetails = new ApplePayDetails(applePayNode);
}
var androidPayNode = node.GetNode("android-pay-card");
if (androidPayNode != null)
{
AndroidPayDetails = new AndroidPayDetails(androidPayNode);
}
BillingAddress = new Address(node.GetNode("billing"));
ShippingAddress = new Address(node.GetNode("shipping"));
CreatedAt = node.GetDateTime("created-at");
UpdatedAt = node.GetDateTime("updated-at");
AddOns = new List<AddOn>();
foreach (var addOnResponse in node.GetList("add-ons/add-on")) {
//.........这里部分代码省略.........