From e5a52d5da994f65e2a07cc21bbdd36e811cfa71e Mon Sep 17 00:00:00 2001 From: edmarSoaress Date: Wed, 20 Mar 2024 09:07:43 -0300 Subject: [PATCH] test to verify if pipeline is working --- src/MercadoPago/Resource/OAuth/OAuthCredential.cs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/src/MercadoPago/Resource/OAuth/OAuthCredential.cs b/src/MercadoPago/Resource/OAuth/OAuthCredential.cs index 67359e5a..a2726a29 100644 --- a/src/MercadoPago/Resource/OAuth/OAuthCredential.cs +++ b/src/MercadoPago/Resource/OAuth/OAuthCredential.cs @@ -32,6 +32,21 @@ public class OAuthCredential : IResource /// public string RefreshToken { get; set; } + /// + /// Identification number (Mercado Pago ID). + /// + public long UserId { get; set; } + + /// + /// Public key of the application. + /// + public string PublicKey { get; set; } + + /// + /// Production or test mode. + /// + public bool LiveMode { get; set; } + /// /// Response from API. ///