Skip to content

Commit

Permalink
Add fields to OAuthCredential
Browse files Browse the repository at this point in the history
  • Loading branch information
HerussHub committed Mar 12, 2024
1 parent 75f4463 commit 5c05a8d
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/MercadoPago/Resource/OAuth/OAuthCredential.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,21 @@ public class OAuthCredential : IResource
/// </summary>
public string RefreshToken { get; set; }

/// <summary>
/// Identification number (Mercado Pago ID).
/// </summary>
public long UserId { get; set; }

/// <summary>
/// Public key of the application.
/// </summary>
public string PublicKey { get; set; }

/// <summary>
/// Production or test mode.
/// </summary>
public bool LiveMode { get; set; }

/// <summary>
/// Response from API.
/// </summary>
Expand Down

0 comments on commit 5c05a8d

Please sign in to comment.