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

pro.zackpollard.telegrambot.api.internal.chat.message.content.NewChatTitleContentImpl Maven / Gradle / Ivy

package pro.zackpollard.telegrambot.api.internal.chat.message.content;

import pro.zackpollard.telegrambot.api.chat.message.content.Content;
import pro.zackpollard.telegrambot.api.chat.message.content.NewChatTitleContent;

/**
 * @author Zack Pollard
 */
public class NewChatTitleContentImpl implements NewChatTitleContent {

	private final String content;

	private NewChatTitleContentImpl(String content) {

		this.content = content;
	}

	public static Content createNewChatTitleContent(String content) {

		return new NewChatTitleContentImpl(content);
	}

	/**
	 * Gets the new chat title
	 *
	 * @return The new chat title
	 */
	@Override
	public String getContent() {
		return content;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy