PaymentSDK
Mobile payment SDK
Payment Data
//
// WDSEPAPayment.h
// PaymentSDK
//
// Created by Sedlak, Stefan on 10/12/15.
// Copyright © 2016 Wirecard Technologies GmbH. All rights reserved.
//
#import "WDPayment.h"
#import "WDPeriodic.h"
@property (strong, nonatomic, nonnull ) NSString *creditorID;
@property (strong, nonatomic, nonnull ) NSString *mandateID;
@property (strong, nonatomic, nullable) NSDate *mandateSignedDate;
@property (strong, nonatomic, nullable) NSDate *dueDate;
@property (strong, nonatomic, nullable) WDPeriodic *periodic;
- (nullable instancetype)initWithCreditor:(nonnull NSString *)creditorID
andMandate:(nonnull NSString *)mandateID NS_DESIGNATED_INITIALIZER;
- (nullable instancetype)init NS_UNAVAILABLE;
@end