diff --git a/docs/financial_document_v1.md b/docs/financial_document_v1.md index 0633cf240..457907ca7 100644 --- a/docs/financial_document_v1.md +++ b/docs/financial_document_v1.md @@ -241,14 +241,14 @@ Aside from the previous attributes, all basic fields have access to a custom `to ### AddressField Aside from the basic `BaseField` attributes, the address field `AddressField` also implements the following: -* **streetNumber** (`string`): String representation of the string number. Can be `null`. -* **streetName** (`string`): Name of the street. Can be `null`. -* **poBox** (`string`): String representation of the PO Box number. Can be `null`. -* **addressComplement** (`string`): Address complement. Can be `null`. -* **city** (`string`): City name. Can be `null`. -* **postalcode** (`string`): String representation of the postal code. Can be `null`. -* **state** (`string`): State name. Can be `null`. -* **country** (`string`): Country name. Can be `null`. +* **streetNumber** (`String`): String representation of the street number. Can be `null`. +* **streetName** (`String`): Name of the street. Can be `null`. +* **poBox** (`String`): String representation of the PO Box number. Can be `null`. +* **addressComplement** (`String`): Address complement. Can be `null`. +* **city** (`String`): City name. Can be `null`. +* **postalcode** (`String`): String representation of the postal code. Can be `null`. +* **state** (`String`): State name. Can be `null`. +* **country** (`String`): Country name. Can be `null`. Note: The `value` field of an AddressField should be a concatenation of the rest of the values. diff --git a/docs/invoices_v4.md b/docs/invoices_v4.md index d6c64649f..6927bdf49 100644 --- a/docs/invoices_v4.md +++ b/docs/invoices_v4.md @@ -233,14 +233,14 @@ Aside from the previous attributes, all basic fields have access to a custom `to ### AddressField Aside from the basic `BaseField` attributes, the address field `AddressField` also implements the following: -* **streetNumber** (`string`): String representation of the string number. Can be `null`. -* **streetName** (`string`): Name of the street. Can be `null`. -* **poBox** (`string`): String representation of the PO Box number. Can be `null`. -* **addressComplement** (`string`): Address complement. Can be `null`. -* **city** (`string`): City name. Can be `null`. -* **postalcode** (`string`): String representation of the postal code. Can be `null`. -* **state** (`string`): State name. Can be `null`. -* **country** (`string`): Country name. Can be `null`. +* **streetNumber** (`String`): String representation of the street number. Can be `null`. +* **streetName** (`String`): Name of the street. Can be `null`. +* **poBox** (`String`): String representation of the PO Box number. Can be `null`. +* **addressComplement** (`String`): Address complement. Can be `null`. +* **city** (`String`): City name. Can be `null`. +* **postalcode** (`String`): String representation of the postal code. Can be `null`. +* **state** (`String`): State name. Can be `null`. +* **country** (`String`): Country name. Can be `null`. Note: The `value` field of an AddressField should be a concatenation of the rest of the values.