public static void SetTotalAmount(this IBPNReceipt This, NSDecimalNumber value)
 {
     if (value == null)
     {
         throw new ArgumentNullException("value");
     }
     global::ApiDefinition.Messaging.void_objc_msgSend_IntPtr(This.Handle, Selector.GetHandle("setTotalAmount:"), value.Handle);
 }
        public static void SetChipCardAID(this IBPNReceipt This, string value)
        {
            if (value == null)
            {
                throw new ArgumentNullException("value");
            }
            var nsvalue = NSString.CreateNative(value);

            global::ApiDefinition.Messaging.void_objc_msgSend_IntPtr(This.Handle, Selector.GetHandle("setChipCardAID:"), nsvalue);
            NSString.ReleaseNative(nsvalue);
        }
 public static string GetInvoice(this IBPNReceipt This)
 {
     return(NSString.FromHandle(global::ApiDefinition.Messaging.IntPtr_objc_msgSend(This.Handle, Selector.GetHandle("invoice"))));
 }
 public static string GetMaskedCardNumber(this IBPNReceipt This)
 {
     return(NSString.FromHandle(global::ApiDefinition.Messaging.IntPtr_objc_msgSend(This.Handle, Selector.GetHandle("maskedCardNumber"))));
 }
 public static void SetPinEntered(this IBPNReceipt This, bool value)
 {
     global::ApiDefinition.Messaging.void_objc_msgSend_bool(This.Handle, Selector.GetHandle("setPinEntered:"), value);
 }
 public static bool GetPinEntered(this IBPNReceipt This)
 {
     return(global::ApiDefinition.Messaging.bool_objc_msgSend(This.Handle, Selector.GetHandle("pinEntered")));
 }
 public static void SetRequiresSignature(this IBPNReceipt This, bool value)
 {
     global::ApiDefinition.Messaging.void_objc_msgSend_bool(This.Handle, Selector.GetHandle("setRequiresSignature:"), value);
 }
 public static bool GetRequiresSignature(this IBPNReceipt This)
 {
     return(global::ApiDefinition.Messaging.bool_objc_msgSend(This.Handle, Selector.GetHandle("requiresSignature")));
 }
 public static string GetCardFirstFour(this IBPNReceipt This)
 {
     return(NSString.FromHandle(global::ApiDefinition.Messaging.IntPtr_objc_msgSend(This.Handle, Selector.GetHandle("cardFirstFour"))));
 }
Esempio n. 10
0
 public static string GetNetworkTerminalID(this IBPNReceipt This)
 {
     return(NSString.FromHandle(global::ApiDefinition.Messaging.IntPtr_objc_msgSend(This.Handle, Selector.GetHandle("networkTerminalID"))));
 }
Esempio n. 11
0
 public static NSDecimalNumber GetTotalAmount(this IBPNReceipt This)
 {
     return(Runtime.GetNSObject <NSDecimalNumber> (global::ApiDefinition.Messaging.IntPtr_objc_msgSend(This.Handle, Selector.GetHandle("totalAmount"))));
 }