Changeset 49 for trunk

Show
Ignore:
Timestamp:
05/13/09 22:08:46 (3 years ago)
Author:
tim
Message:

A change to allow recurring payments provided by Daniel Gonzalez Gasull. Thanks Daniel\!

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/fpys/client.py

    r46 r49  
    237237                       return_url,  
    238238                       pipeline_name="SingleUse",  
     239                       recurring_period=None 
    239240                       ): 
     241        """Gets the URL for making a co-branded service request, like in this Java 
     242        code: 
     243        http://docs.amazonwebservices.com/AmazonFPS/latest/FPSGettingStartedGuide/index.html?gsMakingCoBrandedUIRequests.html#d0e1242 
     244        """ 
    240245        parameters = {'callerReference': caller_reference, 
    241246                      'paymentReason': payment_reason, 
     
    243248                      'callerKey': self.access_key_id, 
    244249                      'pipelineName': pipeline_name, 
     250                      'recurringPeriod': recurring_period, 
    245251                      'returnURL': return_url 
    246252                      }