PagarMe.Recipient.MinAnticipationValue C# (CSharp) Method

MinAnticipationValue() public method

public MinAnticipationValue ( TimeFrame timeframe, System.DateTime paymentDate ) : Limit
timeframe TimeFrame
paymentDate System.DateTime
return PagarMe.Model.Limit
        public Limit MinAnticipationValue(TimeFrame timeframe, DateTime paymentDate)
        {
            var limit = AnticipationLimits(timeframe, paymentDate);
            return limit.Minimum;
        }