@@ -48,7 +48,7 @@ protected DatabaseDocument() { }
4848 /// </summary>
4949 /// <param name="barcodeFields">Whether the document has a barcode. (required).</param>
5050 /// <param name="country">Country name. (required).</param>
51- /// <param name="createad ">Date when the document description was created in the database. (required).</param>
51+ /// <param name="created ">Date when the document description was created in the database. (required).</param>
5252 /// <param name="docType">docType (required).</param>
5353 /// <param name="document">Document name. (required).</param>
5454 /// <param name="graphicFields">The presence of graphic fields in the document. (required).</param>
@@ -63,7 +63,7 @@ protected DatabaseDocument() { }
6363 /// <param name="deprecated">Whether the document is no longer in circulation..</param>
6464 /// <param name="icaoCode">ICAO country code..</param>
6565 /// <param name="docCodes">Document codes..</param>
66- public DatabaseDocument ( bool barcodeFields = default , string country = default , string createad = default , DocumentType docType = default , string document = default , bool graphicFields = default , int id = default , bool mrz = default , string ? region = default , bool rfidChip = default , bool textFields = default , string updated = default , string ? year = default , string ? sovereignty = default , bool ? deprecated = default , string ? icaoCode = default , string ? docCodes = default )
66+ public DatabaseDocument ( bool barcodeFields = default , string country = default , string created = default , DocumentType docType = default , string document = default , bool graphicFields = default , int id = default , bool mrz = default , string ? region = default , bool rfidChip = default , bool textFields = default , string updated = default , string ? year = default , string ? sovereignty = default , bool ? deprecated = default , string ? icaoCode = default , string ? docCodes = default )
6767 {
6868 this . BarcodeFields = barcodeFields ;
6969 // to ensure "country" is required (not null)
@@ -72,12 +72,12 @@ public DatabaseDocument(bool barcodeFields = default, string country = default,
7272 throw new ArgumentNullException ( "country is a required property for DatabaseDocument and cannot be null" ) ;
7373 }
7474 this . Country = country ;
75- // to ensure "createad " is required (not null)
76- if ( createad == null )
75+ // to ensure "created " is required (not null)
76+ if ( created == null )
7777 {
78- throw new ArgumentNullException ( "createad is a required property for DatabaseDocument and cannot be null" ) ;
78+ throw new ArgumentNullException ( "created is a required property for DatabaseDocument and cannot be null" ) ;
7979 }
80- this . Createad = createad ;
80+ this . Created = created ;
8181 this . DocType = docType ;
8282 // to ensure "document" is required (not null)
8383 if ( document == null )
@@ -122,8 +122,8 @@ public DatabaseDocument(bool barcodeFields = default, string country = default,
122122 /// Date when the document description was created in the database.
123123 /// </summary>
124124 /// <value>Date when the document description was created in the database.</value>
125- [ DataMember ( Name = "createad " , IsRequired = true , EmitDefaultValue = true ) ]
126- public string Createad { get ; set ; }
125+ [ DataMember ( Name = "created " , IsRequired = true , EmitDefaultValue = true ) ]
126+ public string Created { get ; set ; }
127127
128128 /// <summary>
129129 /// Document name.
@@ -226,7 +226,7 @@ public override string ToString()
226226 sb . Append ( "class DatabaseDocument {\n " ) ;
227227 sb . Append ( " BarcodeFields: " ) . Append ( BarcodeFields ) . Append ( "\n " ) ;
228228 sb . Append ( " Country: " ) . Append ( Country ) . Append ( "\n " ) ;
229- sb . Append ( " Createad : " ) . Append ( Createad ) . Append ( "\n " ) ;
229+ sb . Append ( " Created : " ) . Append ( Created ) . Append ( "\n " ) ;
230230 sb . Append ( " DocType: " ) . Append ( DocType ) . Append ( "\n " ) ;
231231 sb . Append ( " Document: " ) . Append ( Document ) . Append ( "\n " ) ;
232232 sb . Append ( " GraphicFields: " ) . Append ( GraphicFields ) . Append ( "\n " ) ;
0 commit comments