Guest User

Untitled

a guest
Apr 21st, 2018
276
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. using MundiAPI.PCL;
  2. using MundiAPI.PCL.Models;
  3. using System.Collections.Generic;
  4.  
  5. namespace TutorialPedido {
  6. class Program {
  7. static void Main(string[] args) {
  8.  
  9. string basicAuthUserName = "sk_test_4AdjlqpseatnmgbW";
  10. // Senha em branco. Passando apenas a secret key
  11. string basicAuthPassword = "";
  12. var client = new MundiAPIClient(basicAuthUserName, basicAuthPassword);
  13.  
  14. var customer = new CreateCustomerRequest {
  15. Name = "Tony Stark",
  16. Email = "tonystark@avengers.com",
  17. };
  18. }
  19. }
  20. }
Add Comment
Please, Sign In to add comment