Skip to content

Commit ec3938f

Browse files
SDK regenerated by CI server [ci skip]
1 parent e6d9e19 commit ec3938f

File tree

5 files changed

+8
-6
lines changed

5 files changed

+8
-6
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## [23.9.0] - Aspose Words Cloud for Dart 23.9 Release Notes
2+
3+
- Support for class inheritance in responses from the server.
4+
5+
16
## [23.6.0] - Aspose Words Cloud for Dart 23.6 Release Notes
27

38
- Fix XMLHttpRequest in web applications.

lib/src/models/form_field.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ library aspose_words_cloud;
3030
import '../../aspose_words_cloud.dart';
3131

3232
/// FromField.
33-
class FormField extends NodeLink {
33+
abstract class FormField extends NodeLink {
3434
/// Gets or sets the form field name.
3535
String? _name;
3636

lib/src/models/model_base.dart

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,6 @@ abstract class ModelBase {
128128
'FootnotesResponse, _': () => FootnotesResponse(),
129129
'FootnotesStatData, _': () => FootnotesStatData(),
130130
'FootnoteUpdate, _': () => FootnoteUpdate(),
131-
'FormField, _': () => FormField(),
132131
'FormFieldCheckbox, _': () => FormFieldCheckbox(),
133132
'FormFieldCollection, _': () => FormFieldCollection(),
134133
'FormFieldDropDown, _': () => FormFieldDropDown(),
@@ -188,7 +187,6 @@ abstract class ModelBase {
188187
'PageStatData, _': () => PageStatData(),
189188
'Paragraph, _': () => Paragraph(),
190189
'ParagraphFormat, _': () => ParagraphFormat(),
191-
'ParagraphFormatBase, _': () => ParagraphFormatBase(),
192190
'ParagraphFormatResponse, _': () => ParagraphFormatResponse(),
193191
'ParagraphFormatUpdate, _': () => ParagraphFormatUpdate(),
194192
'ParagraphInsert, _': () => ParagraphInsert(),
@@ -284,7 +282,6 @@ abstract class ModelBase {
284282
'TableRowInsertDto, _': () => TableRowInsertDto(),
285283
'TableRowResponse, _': () => TableRowResponse(),
286284
'TabStop, _': () => TabStop(),
287-
'TabStopBase, _': () => TabStopBase(),
288285
'TabStopInsert, _': () => TabStopInsert(),
289286
'TabStopsResponse, _': () => TabStopsResponse(),
290287
'TextSaveOptionsData, _': () => TextSaveOptionsData(),

lib/src/models/paragraph_format_base.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ library aspose_words_cloud;
3030
import '../../aspose_words_cloud.dart';
3131

3232
/// Paragraph format element base class.
33-
class ParagraphFormatBase extends LinkElement {
33+
abstract class ParagraphFormatBase extends LinkElement {
3434
/// Gets or sets a value indicating whether inter-character spacing is automatically adjusted between regions of Latin text and regions of East Asian text in the current paragraph.
3535
bool? _addSpaceBetweenFarEastAndAlpha;
3636

lib/src/models/tab_stop_base.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ library aspose_words_cloud;
3030
import '../../aspose_words_cloud.dart';
3131

3232
/// Base class for paragraph format tab stop DTO.
33-
class TabStopBase implements ModelBase {
33+
abstract class TabStopBase implements ModelBase {
3434
/// Gets or sets the alignment of text at this tab stop.
3535
TabStopBase_AlignmentEnum? _alignment;
3636

0 commit comments

Comments
 (0)