public DecisionDetails(ExternalStatusType externalStatus, DateTimeOffset?decidedAt, string reason = null, float?amount = null, string currency = null, string notes = null)
        {
            this.ExternalStatus = externalStatus;
            this.DecidedAt      = decidedAt;

            // Optional fields
            this.Reason   = reason;
            this.Amount   = amount;
            this.Currency = currency;
            this.Notes    = Notes;
        }
Пример #2
0
        public DecisionDetails(ExternalStatusType externalStatus, DateTime? decidedAt, string reason = null, float? amount = null, string currency = null, string notes = null)
        {
            this.ExternalStatus = externalStatus;
            this.DecidedAt = decidedAt;

            // Optional fields
            this.Reason = reason;
            this.Amount = amount;
            this.Currency = currency;
            this.Notes = Notes;
        }
Пример #3
0
        public DecisionDetails(
            ExternalStatusType externalStatus, DateTime?decidedAt, string reason = null, float?amount = null, string currency = null)
        {
            ExternalStatus = externalStatus;
            DecidedAt      = decidedAt;

            // Optional fields
            Reason   = reason;
            Amount   = amount;
            Currency = currency;
            Notes    = Notes;
        }