required:
- city
- countryCode
- postalCode
- street
type: object
properties:
postalCode:
maxLength: 10
minLength: 1
pattern: ^(?!\s*$)[a-zA-Z0-9\s]*$
type: string
description: Post code/Zip code of your subMerchant's company.
example: SW1 1AA
street:
maxLength: 50
minLength: 1
pattern: ^(?!\s*$)[A-Za-z0-9\s]*$
type: string
description: Street name of your subMerchant's company.
example: 221B Baker Street
city:
maxLength: 13
minLength: 1
pattern: ^(?!\s*$)[A-Za-z\s-]*$
type: string
description: City of your subMerchant's company.
example: London
state:
maxLength: 3
minLength: 1
pattern: ^(?!\s*$)[a-zA-Z0-9\s]*$
type: string
description: State of your subMerchant's company.
example: GB
countryCode:
maxLength: 2
minLength: 2
type: string
description: >-
Country code of your subMerchant's company in [ISO 3166-1 Alpha-2
format](/products/access/reference/supported-countries-currencies#iso-country-codes).
example: GB
description: Contains the subMerchant address information.