package form
Ordering
- Alphabetic
Visibility
- Public
- All
Type Members
- case class AddressValue(houseNumber: Option[String], poBox: Option[String], road: Option[String], city: Option[String], state: Option[String], postalCode: Option[String], countryRegion: Option[String], streetAddress: Option[String]) extends Product with Serializable
- class AnalyzeBusinessCards extends FormRecognizerBase with SynapseMLLogging with HasPages with HasTextDetails with HasLocale
- class AnalyzeCustomModel extends FormRecognizerBase with SynapseMLLogging with HasTextDetails with HasModelID
- class AnalyzeDocument extends CognitiveServicesBaseNoHandler with HasCognitiveServiceInput with HasInternalJsonOutputParser with BasicAsyncReply with HasPrebuiltModelID with HasPages with HasLocale with HasAPIVersion with HasImageInput with HasSetLocation with SynapseMLLogging with HasSetLinkedService
- case class AnalyzeDocumentResponse(status: String, createdDateTime: String, lastUpdatedDateTime: String, analyzeResult: AnalyzeResultV3) extends Product with Serializable
- class AnalyzeIDDocuments extends FormRecognizerBase with SynapseMLLogging with HasPages with HasTextDetails
- class AnalyzeInvoices extends FormRecognizerBase with SynapseMLLogging with HasPages with HasTextDetails with HasLocale
- class AnalyzeLayout extends FormRecognizerBase with SynapseMLLogging with HasPages
- class AnalyzeReceipts extends FormRecognizerBase with SynapseMLLogging with HasPages with HasTextDetails with HasLocale
- case class AnalyzeResponse(status: String, createdDateTime: String, lastUpdatedDateTime: String, analyzeResult: AnalyzeResult) extends Product with Serializable
- case class AnalyzeResult(version: String, readResults: Seq[FormReadResult], pageResults: Option[Seq[PageResult]], documentResults: Option[Seq[DocumentResult]]) extends Product with Serializable
- case class AnalyzeResultV3(apiVersion: String, modelId: String, stringIndexType: String, content: String, pages: Seq[PageResultV3], paragraphs: Option[Seq[DocumentParagraph]], tables: Option[Seq[TableResultV3]], keyValuePairs: Option[Seq[KeyValuePairV3]], styles: Option[Seq[FormStyleV3]], languages: Option[Seq[DocumentLanguage]], documents: Option[Seq[FormDocumentV3]]) extends Product with Serializable
- case class BoundingRegion(pageNumber: Int, polygon: Seq[Double]) extends Product with Serializable
- case class Cell(rowIndex: Int, columnIndex: Int, text: String, boundingBox: Seq[Double], isHeader: Option[Boolean], elements: Seq[String]) extends Product with Serializable
- case class CurrencyValue(amount: Double, currencySymbol: Option[String]) extends Product with Serializable
- case class DocumentLanguage(locale: String, spans: Seq[FormSpan], confidence: Double) extends Product with Serializable
- case class DocumentParagraph(role: Option[String], content: String, boundingRegions: Option[Seq[BoundingRegion]], spans: Seq[FormSpan]) extends Product with Serializable
- case class DocumentResult(docType: String, pageRange: Seq[Int], fields: Map[String, FieldResult]) extends Product with Serializable
- case class Element(text: String, boundingBox: Seq[Double]) extends Product with Serializable
- case class Field(fieldName: String, accuracy: Double) extends Product with Serializable
- case class FieldResult(type: String, page: Option[Int], confidence: Option[Double], boundingBox: Option[Seq[Double]], text: Option[String], valueString: Option[String], valuePhoneNumber: Option[String], valueNumber: Option[Double], valueDate: Option[String], valueTime: Option[String], valueObject: Option[String], valueArray: Option[Seq[String]]) extends Product with Serializable
- case class FieldResultRecursive(type: String, page: Option[Int], confidence: Option[Double], boundingBox: Option[Seq[Double]], text: Option[String], valueString: Option[String], valuePhoneNumber: Option[String], valueNumber: Option[Double], valueDate: Option[String], valueTime: Option[String], valueObject: Option[Map[String, FieldResultRecursive]], valueArray: Option[Seq[FieldResultRecursive]]) extends Product with Serializable
- case class FormCell(kind: Option[String], rowIndex: Int, columnIndex: Int, rowSpan: Option[Int], columnSpan: Option[Int], content: String, boundingRegions: Option[Seq[BoundingRegion]], spans: Seq[FormSpan]) extends Product with Serializable
- case class FormDocumentV3(docType: String, boundingRegions: Option[Seq[BoundingRegion]], spans: Seq[FormSpan], confidence: Double, fields: Option[Map[String, FormFieldV3]]) extends Product with Serializable
- case class FormFieldV3(type: String, content: Option[String], boundingRegions: Option[Seq[BoundingRegion]], confidence: Option[Double], spans: Option[Seq[FormSpan]], valueString: Option[String], valuePhoneNumber: Option[String], valueCountryRegion: Option[String], valueNumber: Option[Double], valueDate: Option[String], valueTime: Option[String], valueObject: Option[String], valueArray: Option[Seq[String]], valueInteger: Option[Int], valueSelectionMark: Option[String], valueSignature: Option[String], valueCurrency: Option[CurrencyValue], valueAddress: Option[AddressValue]) extends Product with Serializable
- case class FormKV(content: String, boundingRegions: Option[Seq[BoundingRegion]], spans: Seq[FormSpan]) extends Product with Serializable
- case class FormLine(content: String, polygon: Option[Seq[Double]], spans: Option[Seq[FormSpan]]) extends Product with Serializable
- class FormOntologyLearner extends Estimator[FormOntologyTransformer] with SynapseMLLogging with DefaultParamsWritable with HasInputCol with HasOutputCol with Wrappable
- class FormOntologyTransformer extends Model[FormOntologyTransformer] with SynapseMLLogging with ComplexParamsWritable with HasInputCol with HasOutputCol with Wrappable
- case class FormReadResult(page: Int, language: Option[String], angle: Double, width: Double, height: Double, unit: String, lines: Option[Seq[ReadLine]]) extends Product with Serializable
- abstract class FormRecognizerBase extends CognitiveServicesBaseNoHandler with HasCognitiveServiceInput with HasInternalJsonOutputParser with BasicAsyncReply with HasImageInput with HasSetLocation with HasSetLinkedService
- case class FormSelectionMark(state: String, polygon: Option[Seq[Double]], confidence: Double, span: FormSpan) extends Product with Serializable
- case class FormSpan(offset: Int, length: Int) extends Product with Serializable
- case class FormStyleV3(isHandwritten: Option[Boolean], spans: Seq[FormSpan], confidence: Double) extends Product with Serializable
- case class FormWord(content: String, polygon: Option[Seq[Double]], confidence: Double, span: FormSpan) extends Product with Serializable
- class GetCustomModel extends CognitiveServicesBase with HasCognitiveServiceInput with HasInternalJsonOutputParser with HasSetLocation with HasSetLinkedService with SynapseMLLogging with HasModelID
- case class GetCustomModelResponse(modelInfo: ModelInfo, keys: String, trainResult: TrainResult) extends Product with Serializable
- trait HasLocale extends HasServiceParams
- trait HasModelID extends HasServiceParams
- trait HasPages extends HasServiceParams
- trait HasPrebuiltModelID extends HasServiceParams
- trait HasTextDetails extends HasServiceParams
- case class Key(clusters: Map[String, Seq[String]]) extends Product with Serializable
- case class KeyValuePair(key: Element, value: Element) extends Product with Serializable
- case class KeyValuePairV3(key: FormKV, value: Option[FormKV], confidence: Double) extends Product with Serializable
- class ListCustomModels extends CognitiveServicesBase with HasCognitiveServiceInput with HasInternalJsonOutputParser with HasSetLocation with HasSetLinkedService with SynapseMLLogging
- case class ListCustomModelsResponse(summary: Summary, modelList: Seq[ModelInfo], nextLink: String) extends Product with Serializable
- case class ModelInfo(modelId: String, status: String, createDateTime: String, lastUpdatedDateTime: String) extends Product with Serializable
- case class PageResult(page: Int, keyValuePairs: Option[Seq[KeyValuePair]], tables: Seq[Table]) extends Product with Serializable
- case class PageResultV3(pageNumber: Int, angle: Option[Double], width: Option[Double], height: Option[Double], unit: Option[String], kind: Option[String], spans: Seq[FormSpan], words: Option[Seq[FormWord]], selectionMarks: Option[Seq[FormSelectionMark]], lines: Option[Seq[FormLine]]) extends Product with Serializable
- case class Summary(count: Int, limit: Int, lastUpdatedDateTime: String) extends Product with Serializable
- case class Table(rows: Int, columns: Int, cells: Seq[Cell], boundingBox: Seq[Double]) extends Product with Serializable
- case class TableResultV3(rowCount: Int, columnCount: Int, boundingRegions: Option[Seq[BoundingRegion]], spans: Seq[FormSpan], cells: Seq[FormCell]) extends Product with Serializable
- case class TrainResult(trainingDocuments: Seq[TrainingDocument], fields: Seq[Field], errors: Seq[String]) extends Product with Serializable
- case class TrainingDocument(documentName: String, pages: Int, errors: Seq[String], status: String) extends Product with Serializable
Value Members
- object AnalyzeBusinessCards extends ComplexParamsReadable[AnalyzeBusinessCards] with Serializable
- object AnalyzeCustomModel extends ComplexParamsReadable[AnalyzeCustomModel] with Serializable
- object AnalyzeDocument extends ComplexParamsReadable[AnalyzeDocument] with Serializable
- object AnalyzeDocumentResponse extends SparkBindings[AnalyzeDocumentResponse]
- object AnalyzeIDDocuments extends ComplexParamsReadable[AnalyzeIDDocuments] with Serializable
- object AnalyzeInvoices extends ComplexParamsReadable[AnalyzeInvoices] with Serializable
- object AnalyzeLayout extends ComplexParamsReadable[AnalyzeLayout] with Serializable
- object AnalyzeReceipts extends ComplexParamsReadable[AnalyzeReceipts] with Serializable
- object AnalyzeResponse extends SparkBindings[AnalyzeResponse]
- object AnalyzeResultV3 extends SparkBindings[AnalyzeResultV3]
- object FormOntologyLearner extends DefaultParamsReadable[FormOntologyLearner] with Serializable
- object FormOntologyTransformer extends ComplexParamsReadable[FormOntologyTransformer] with Serializable
- object FormsFlatteners
- object FormsJsonProtocol extends DefaultJsonProtocol
- object GetCustomModel extends ComplexParamsReadable[GetCustomModel] with Serializable
- object GetCustomModelResponse extends SparkBindings[GetCustomModelResponse]
- object ListCustomModels extends ComplexParamsReadable[ListCustomModels] with Serializable
- object ListCustomModelsResponse extends SparkBindings[ListCustomModelsResponse]