WePay iOS SDK
3.0.0
|
#import <WePay.h>
Instance Methods | |
(void) | - didStoreSignature:forCheckoutId: |
(void) | - didFailToStoreSignatureImage:forCheckoutId:withError: |
This delegate protocol has to be adopted by any class that handles Checkout responses.
- (void) didFailToStoreSignatureImage: | (UIImage *) | image | |
forCheckoutId: | (NSString *) | checkoutId | |
withError: | (NSError *) | error | |
Called when an error occurs while storing a signature.
image | The signature image to be stored. |
checkoutId | The checkout id associated with the signature. |
error | The error which caused the failure. |
- (void) didStoreSignature: | (NSString *) | signatureUrl | |
forCheckoutId: | (NSString *) | checkoutId | |
Called when a signature is successfully stored for the given checkout id.
signatureUrl | The url for the signature image. |
checkoutId | The checkout id associated with the signature. |