You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
802 B
C#

using System;
using System.Collections.Generic;
namespace Amazon.SellingPartnerApiSDK.AmazonSpApiSDK.Runtime
{
public class LWAAuthorizationCredentials
{
public LWAAuthorizationCredentials()
{
Scopes = new List<string>();
}
/**
* LWA Client Id
*/
public string ClientId { get; set; }
/**
* LWA Client Secret
*/
public string ClientSecret { get; set; }
/**
* LWA Refresh Token
*/
public string RefreshToken { get; set; }
/**
* LWA Authorization Server Endpoint
*/
public Uri Endpoint { get; set; }
/**
* LWA Authorization Scopes
*/
public List<string> Scopes { get; set; }
}
}