NOTA: withholding
es un boleano para marcar el impuesto como retención.
{
"customer": {
"legal_name": "John Wick",
"tax_id": "WXKE800401B12"
},
// 1. Populate an NSDictionary with the data you want to send | |
NSDictionary *exampleData = @{ | |
@"first": @"Javier", | |
@"last": @"Rosas", | |
@"address": @"742 Evergreen Terrace" | |
}; | |
// 2. Serialize your data to JSON format and store it in an NSData object | |
NSErrpr *error; | |
NSData *jsonData = [NSJSONSerialization dataWithJSONObject:exampleData options:0 error:&error]; |
#include <RTCZero.h> | |
const byte button = 5; | |
bool ledIsOn = false; | |
volatile bool shouldBeSleeping = false; | |
volatile bool isResetPressed = false; | |
bool wasResetPressed = false; | |
int millisLastTimeResetWasPressed = 0; | |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Google Login</title> | |
<script src="https://apis.google.com/js/platform.js" async defer></script> | |
<meta name="google-signin-client_id" content="764821343773-cjpf8lnubnnmjrupiu8oen4vsacgcq9n.apps.googleusercontent.com"> | |
</head> | |
<body> | |
<div class="g-signin2" data-onsuccess="onSignIn"></div> |
const run = async () => { | |
const Facturapi = require('facturapi') | |
const fs = require('fs'); | |
const path = require('path'); | |
const facturapi = new Facturapi('sk_user_LLAVE_DE_USUARIO'); | |
const cerStream = fs.createReadStream(path.join(__dirname, 'cer.cer')); | |
const keyStream = fs.createReadStream(path.join(__dirname, 'key.key')); | |
console.log({ keyBuffer }); |