Skip to content

Commit

Permalink
Merge pull request #181 from mercadopago/feature/add-fields-OAuthCred…
Browse files Browse the repository at this point in the history
…ential

Feature/add fields o auth credential
  • Loading branch information
edmarSoaress authored Mar 21, 2024
2 parents 9bb06ba + 02dd467 commit 7f5ba9d
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 7f5ba9d

Please sign in to comment.