PagarMe.Recipient.MaxAnticipationValue C# (CSharp) Method

MaxAnticipationValue() public method

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