# RltdRmtInf Provides information related to the handling of the remittance information by any of the agents in the transaction processing chain. * Is optional * Type: `object` With the following properties: | Property | Type | Required | Description | | --- | --- | --- | --- | | `RmtId` | String | Optional | Unique identification, as assigned by the initiating party, to unambiguously identify the remittance information sent separately from the payment instruction, such as a remittance advice. Maximum length: 35 characters | | [RmtLctnDtls](#rmtlctndtls) | Object | Optional | Set of elements used to provide information on the location and/or delivery of the remittance information. | ## `RmtLctnDtls` Set of elements used to provide information on the location and/or delivery of the remittance information. With the following properties: | Property | Type | Required | Description | | --- | --- | --- | --- | | `Mtd` | String | Optional | List based on ISO 20022 RemittanceLocationMethod2Code List, the value of this property **must** be equal to one of the [known values](#mtd-known-values) below. | | `ElctrncAdr` | String | Optional | Electronic address to which an agent is to send the remittance information. Maximum length: 2048 characters | | [PstlAdr](#pstladr) | Object | Optional | Set of elements used to provide information on the location and/or delivery of the remittance information. | ### `Mtd` known values | Value | Description | | --- | --- | | `FAXI` | Fax | | `EDIC` | Electronic Data Interchange | | `URID` | Uniform Resource Identifier | | `EMAL` | EMail | | `POST` | Post | | `SMSM` | SMS | ### `PstlAdr` With the following properties: | Property | Type | Required | Description | | --- | --- | --- | --- | | [Nm](/products/payments-odl/api-docs/ripplenet/resources/srpo/supporting-info-definitions/fullname) | Reference | Optional | Allows the name to be held. Defined in `#/definitions/fullname`. | | [Adr](/products/payments-odl/api-docs/ripplenet/resources/srpo/supporting-info-definitions/address) | Reference | Optional | Allows the address to be held. Defined in `#/definitions/address`. | ## JSON schema extract ```json { "type": "object", "description": "Postal address to which an agent is to send the remittance information.", "properties": { "Mtd": { "type": "string", "description": "List based on ISO 20022 RemittanceLocationMethod2Code List", "enum": [ "FAXI", "EDIC", "URID", "EMAL", "POST", "SMSM" ] }, "ElctrncAdr": { "type": "string", "description": "Electronic address to which an agent is to send the remittance information.", "maxLength": 2048 }, "PstlAdr": { "type": "object", "description": "Postal address to which an agent is to send the remittance information.", "properties": { "Nm": { "$ref": "#/definitions/fullname" }, "Adr": { "$ref": "#/definitions/address" } } } } } ```