Skip to content

Instantly share code, notes, and snippets.

@jakejscott
jakejscott / PayPalPaymentCreatedResponse.cs
Last active January 20, 2024 13:09
Paypal .net core C# sample
public class PayPalPaymentCreatedResponse
{
public string id { get; set; }
public string intent { get; set; }
public string state { get; set; }
public Payer payer { get; set; }
public Transaction[] transactions { get; set; }
public DateTime create_time { get; set; }
public Link[] links { get; set; }