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

net.kemitix.trello.TrelloConfig Maven / Gradle / Ivy

package net.kemitix.trello;

public interface TrelloConfig {

    /**
     * The Trello Developer API Key.
     *
     * 

https://trello.com/app-key

*/ String getTrelloKey(); /** * The Trello Developer API Key Token. * *

https://trello.com/app-key

*/ String getTrelloSecret(); /** * The name of the user with access to the Trello Slush Pile Board. */ String getUserName(); /** * The trello board containing the Slush Pile. */ String getBoardName(); /** * The email address to send submission attachments to. * *

e.g. the kindle address

*/ String getSender(); /** * The email address to send emails from. * *

If sending to Kindle, then ensure this address is listed as a valid sender.

*/ String getReader(); /** * The URL of the Webhook to register with services. */ String getWebhook(); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy