//// CheckoutSelectionController.h// Checkout//// Created by Shopify.// Copyright (c) 2015 Shopify. All rights reserved.//@importUIKit;@classCheckoutSelectionController;typedefNS_ENUM(NSUInteger,CheckoutType){CheckoutTypeNormal,CheckoutTypeApplePay};@protocolCheckoutSelectionControllerDelegate<NSObject>-(void)checkoutSelectionControllerCancelled:(CheckoutSelectionController*)controller;-(void)checkoutSelectionController:(CheckoutSelectionController*)controllerselectedCheckoutType:(CheckoutType)checkoutType;@end@interfaceCheckoutSelectionController:UIViewController@property(nonatomic,strong)NSURLRequest*checkoutRequest;@property(nonatomic,weak)id<CheckoutSelectionControllerDelegate>delegate;@end