Subversion Repositories SmartDukaan

Rev

Rev 16631 | Rev 16727 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 16631 Rev 16698
Line 283... Line 283...
283
        self.overridenCashBack = overridenCashBack
283
        self.overridenCashBack = overridenCashBack
284
        self.isCashBackOverriden = isCashBackOverriden
284
        self.isCashBackOverriden = isCashBackOverriden
285
        self.user_payout = user_payout
285
        self.user_payout = user_payout
286
        
286
        
287
class AppOfferObj():
287
class AppOfferObj():
288
    def __init__(self, app_id, appmaster_id, app_name, affiliate_offer_id, image_url, downloads, link, offer_price, offerCategory, package_name, promoImage, ratings, user_payout, shortDescription, longDescription, customerOneLiner, retailerOneLiner, priority):
288
    def __init__(self, app_id, appmaster_id, app_name, affiliate_offer_id, image_url, downloads, link, offer_price, offerCategory, package_name, promoImage, ratings, user_payout, shortDescription, longDescription, customerOneLiner, retailerOneLiner, priority, offerCondition):
289
        self.app_id = app_id
289
        self.app_id = app_id
290
        self.appmaster_id= appmaster_id
290
        self.appmaster_id= appmaster_id
291
        self.app_name = app_name
291
        self.app_name = app_name
292
        self.affiliate_offer_id = affiliate_offer_id
292
        self.affiliate_offer_id = affiliate_offer_id
293
        self.image_url = image_url
293
        self.image_url = image_url
Line 302... Line 302...
302
        self.shortDescription = shortDescription
302
        self.shortDescription = shortDescription
303
        self.longDescription = longDescription
303
        self.longDescription = longDescription
304
        self.customerOneLiner = customerOneLiner
304
        self.customerOneLiner = customerOneLiner
305
        self.retailerOneLiner = retailerOneLiner
305
        self.retailerOneLiner = retailerOneLiner
306
        self.priority = priority
306
        self.priority = priority
-
 
307
        self.offerCondition = offerCondition
307
        
308
        
308
        
309
        
309
        
310
        
310
        
311
        
311
        
312
        
312
313