com.pengrad.telegrambot.passport.PassportElementErrorFiles Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-telegram-bot-api Show documentation
Show all versions of java-telegram-bot-api Show documentation
Java API for Telegram Bot API
package com.pengrad.telegrambot.passport;
/**
* Stas Parshin
* 28 August 2018
*/
public class PassportElementErrorFiles extends PassportElementError {
private final static long serialVersionUID = 0L;
private String[] file_hashes;
public PassportElementErrorFiles(String type, String[] fileHashes, String message) {
super("files", type, message);
file_hashes = fileHashes;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy