mirror of
https://github.com/h7x4/unofficial_jisho_api_dart.git
synced 2025-09-21 04:55:56 +02:00
155 lines
3.2 KiB
Dart
155 lines
3.2 KiB
Dart
class PhraseScrapeSentence {
|
|
String english;
|
|
String japanese;
|
|
List<ExampleSentencePiece> pieces;
|
|
|
|
PhraseScrapeSentence ({String english, String japanese, List<ExampleSentencePiece> pieces}){
|
|
this.english = english;
|
|
this.japanese = japanese;
|
|
this.pieces = pieces;
|
|
}
|
|
}
|
|
|
|
class PhraseScrapeMeaning {
|
|
List<String> seeAlsoTerms;
|
|
List<PhraseScrapeSentence> sentences;
|
|
String definition;
|
|
List<String> supplemental;
|
|
String definitionAbstract;
|
|
List<String> tags;
|
|
|
|
PhraseScrapeMeaning({
|
|
List<String> seeAlsoTerms,
|
|
List<PhraseScrapeSentence> sentences,
|
|
String definition,
|
|
List<String> supplemental,
|
|
String definitionAbstract,
|
|
List<String> tags,
|
|
}){
|
|
this.seeAlsoTerms = seeAlsoTerms;
|
|
this.sentences = sentences;
|
|
this.definition = definition;
|
|
this.supplemental = supplemental;
|
|
this.definitionAbstract = definitionAbstract;
|
|
this.tags = tags;
|
|
|
|
}
|
|
}
|
|
|
|
class PhrasePageScrapeResult {
|
|
bool found;
|
|
String query;
|
|
String uri;
|
|
List<String> otherForms;
|
|
List<PhraseScrapeMeaning> meanings;
|
|
List<String> tags;
|
|
List<String> notes;
|
|
|
|
PhrasePageScrapeResult({
|
|
bool found,
|
|
String query,
|
|
String uri,
|
|
List<String> otherForms,
|
|
List<PhraseScrapeMeaning> meanings,
|
|
List<String> tags,
|
|
List<String> notes,
|
|
}){
|
|
this.found = found;
|
|
this.query = query;
|
|
this.uri = uri;
|
|
this.otherForms = otherForms;
|
|
this.meanings = meanings;
|
|
this.tags = tags;
|
|
this.notes = notes;
|
|
}
|
|
}
|
|
|
|
class YomiExample {
|
|
String example;
|
|
String reading;
|
|
String meaning;
|
|
|
|
YomiExample({String example, String reading, String meaning}){
|
|
this.example = example;
|
|
this.reading = reading;
|
|
this.meaning = meaning;
|
|
}
|
|
}
|
|
|
|
class Radical {
|
|
String symbol;
|
|
List<String> forms;
|
|
String meaning;
|
|
|
|
Radical({String symbol, List<String> forms, String meaning}){
|
|
this.symbol = symbol;
|
|
this.forms = forms;
|
|
this.meaning = meaning;
|
|
}
|
|
}
|
|
|
|
class KanjiResult {
|
|
String query;
|
|
bool found;
|
|
|
|
String taughtIn;
|
|
String jlptLevel;
|
|
int newspaperFrequencyRank;
|
|
int strokeCount;
|
|
String meaning;
|
|
List<String> kunyomi;
|
|
List<String> onyomi;
|
|
List<YomiExample> onyomiExamples;
|
|
List<YomiExample> kunyomiExamples;
|
|
Radical radical;
|
|
List<String> parts;
|
|
String strokeOrderDiagramUri;
|
|
String strokeOrderSvgUri;
|
|
String strokeOrderGifUri;
|
|
String uri;
|
|
}
|
|
|
|
class ExampleSentencePiece {
|
|
String unlifted;
|
|
String lifted;
|
|
|
|
ExampleSentencePiece({String unlifted, String lifted}){
|
|
this.unlifted = unlifted;
|
|
this.lifted = lifted;
|
|
}
|
|
}
|
|
|
|
class ExampleResultData {
|
|
String kanji;
|
|
String kana;
|
|
String english;
|
|
List<ExampleSentencePiece> pieces;
|
|
|
|
ExampleResultData({String kanji, String kana, String english, List<ExampleSentencePiece> pieces}){
|
|
this.kanji = kanji;
|
|
this.kana = kana;
|
|
this.english = english;
|
|
this.pieces = pieces;
|
|
}
|
|
}
|
|
|
|
class ExampleResults {
|
|
String query;
|
|
bool found;
|
|
String uri;
|
|
List<ExampleResultData> results;
|
|
String phrase;
|
|
|
|
ExampleResults({String query, bool found, String uri, List<ExampleResultData> results, String phrase}){
|
|
this.query = query;
|
|
this.found = found;
|
|
this.uri = uri;
|
|
this.results = results;
|
|
this.phrase = phrase;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|