All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.plenigo.sdk.models.AppAccessToken Maven / Gradle / Ivy

There is a newer version: 1.7.2
Show newest version
package com.plenigo.sdk.models;


/**
 * 

* This class is used to represent application access tokens. *

*

* Thread safety: This class is thread safe and can be injected. *

*/ public class AppAccessToken { private String customerId; private String token; /** * Constructor with the required fields. * * @param customerId customer id * @param token token */ public AppAccessToken(String customerId, String token) { this.customerId = customerId; this.token = token; } /** * Returns the customer id. * * @return customer id */ public String getCustomerId() { return customerId; } /** * Returns the token. * * @return token */ public String getToken() { return token; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy