| 123456789101112131415161718192021222324252627282930 |
- #import "BTPayPalRequest.h"
- @implementation BTPayPalRequest
- - (instancetype)init
- {
- self = [super init];
- if (self) {
- _shippingAddressRequired = NO;
- _offerCredit = NO;
- _shippingAddressEditable = NO;
- _intent = BTPayPalRequestIntentAuthorize;
- _userAction = BTPayPalRequestUserActionDefault;
- _landingPageType = BTPayPalRequestLandingPageTypeDefault;
- }
- return self;
- }
- - (instancetype)initWithAmount:(NSString *)amount {
- if (amount == nil) {
- return nil;
- }
- if (self = [self init]) {
- _amount = amount;
- }
- return self;
- }
- @end
|