Client model for FinancialScheduledTransaction that includes all the fields that are available for GETs. Use this for GETs (use FinancialScheduledTransactionEntity for POST/PUTs)
Inheritance: FinancialScheduledTransactionEntity
コード例 #1
0
 /// <summary>
 /// Copies the base properties from a source FinancialScheduledTransaction object
 /// </summary>
 /// <param name="source">The source.</param>
 public void CopyPropertiesFrom( FinancialScheduledTransaction source )
 {
     this.Id = source.Id;
     this.AuthorizedPersonAliasId = source.AuthorizedPersonAliasId;
     this.CardReminderDate = source.CardReminderDate;
     this.EndDate = source.EndDate;
     this.FinancialGatewayId = source.FinancialGatewayId;
     this.FinancialPaymentDetailId = source.FinancialPaymentDetailId;
     this.ForeignGuid = source.ForeignGuid;
     this.ForeignKey = source.ForeignKey;
     this.GatewayScheduleId = source.GatewayScheduleId;
     this.IsActive = source.IsActive;
     this.LastRemindedDate = source.LastRemindedDate;
     this.LastStatusUpdateDateTime = source.LastStatusUpdateDateTime;
     this.ModifiedAuditValuesAlreadyUpdated = source.ModifiedAuditValuesAlreadyUpdated;
     this.NextPaymentDate = source.NextPaymentDate;
     this.NumberOfPayments = source.NumberOfPayments;
     this.SourceTypeValueId = source.SourceTypeValueId;
     this.StartDate = source.StartDate;
     this.TransactionCode = source.TransactionCode;
     this.TransactionFrequencyValueId = source.TransactionFrequencyValueId;
     this.TransactionTypeValueId = source.TransactionTypeValueId;
     this.CreatedDateTime = source.CreatedDateTime;
     this.ModifiedDateTime = source.ModifiedDateTime;
     this.CreatedByPersonAliasId = source.CreatedByPersonAliasId;
     this.ModifiedByPersonAliasId = source.ModifiedByPersonAliasId;
     this.Guid = source.Guid;
     this.ForeignId = source.ForeignId;
 }