Liking cljdoc? Tell your friends :D

web.payments.PaymentAddress

The PaymentAddress interface of the Payment Request API is used store shipping or payment address information.

The PaymentAddress interface of the Payment Request API is used
store shipping or payment address information.
raw docstring

address-linecljs

(address-line this)

Property.

[Read Only]

The addressLine read-only property of the web.payments.PaymentAddress is an array of web.DOMString objects, each specifying a line the address that is not covered by one of the other properties PaymentAddress.

var paymentAddressLines = PaymentAddress.addressLine;

See also: https://developer.mozilla.org/en-US/docs/Web/API/PaymentAddress/addressLine

Property.

[Read Only]

The addressLine read-only property of the `web.payments.PaymentAddress`
is an array of `web.DOMString` objects, each specifying a line
the address that is not covered by one of the other properties
PaymentAddress.

`var paymentAddressLines = PaymentAddress.addressLine;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/PaymentAddress/addressLine`
sourceraw docstring

citycljs

(city this)

Property.

[Read Only]

The city read-only property of the web.payments.PaymentAddress returns a string containing the city or town portion of the address.

var paymentCity = PaymentAddress.city;

See also: https://developer.mozilla.org/en-US/docs/Web/API/PaymentAddress/city

Property.

[Read Only]

The city read-only property of the `web.payments.PaymentAddress`
returns a string containing the city or town portion of the address.

`var paymentCity = PaymentAddress.city;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/PaymentAddress/city`
sourceraw docstring

countrycljs

(country this)

Property.

[Read Only]

The country read-only property of the web.payments.PaymentAddress is a string identifying the address's country using the ISO 3166-1 standard. The string is always in its canonical upper-case form.

var paymentCountry = PaymentAddress.country;

See also: https://developer.mozilla.org/en-US/docs/Web/API/PaymentAddress/country

Property.

[Read Only]

The country read-only property of the `web.payments.PaymentAddress`
is a string identifying the address's country using the ISO 3166-1
standard. The string is always in its canonical upper-case form.

`var paymentCountry = PaymentAddress.country;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/PaymentAddress/country`
sourceraw docstring

dependent-localitycljs

(dependent-locality this)

Property.

[Read Only]

The read-only dependentLocality property of the web.payments.PaymentAddress is a string containing a sublocality designation within a city, as a neighborhood, borough, district, or, in the United Kingdom, dependent locality. Also known as a post town.

var paymentDependentLocality = PaymentAddress.dependentLocality;

See also: https://developer.mozilla.org/en-US/docs/Web/API/PaymentAddress/dependentLocality

Property.

[Read Only]

The read-only dependentLocality property of the `web.payments.PaymentAddress`
is a string containing a sublocality designation within a city,
as a neighborhood, borough, district, or, in the United Kingdom,
dependent locality. Also known as a post town.

`var paymentDependentLocality = PaymentAddress.dependentLocality;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/PaymentAddress/dependentLocality`
sourceraw docstring

language-codecljs

(language-code this)

Property.

[Read Only] [Deprecated]

The languageCode read-only property of the web.payments.PaymentAddress returns a string containing the BCP-47 language code for the

var paymentLanguageCode = PaymentAddress.languageCode;

See also: https://developer.mozilla.org/en-US/docs/Web/API/PaymentAddress/languageCode

Property.

[Read Only]
[Deprecated]

The languageCode read-only property of the `web.payments.PaymentAddress`
returns a string containing the BCP-47 language code for the

`var paymentLanguageCode = PaymentAddress.languageCode;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/PaymentAddress/languageCode`
sourceraw docstring

organizationcljs

(organization this)

Property.

[Read Only]

The organization read-only property of the web.payments.PaymentAddress returns a string containing the name of the organization, firm, or institution at the address.

var paymentOrganization = PaymentAddress.organization;

See also: https://developer.mozilla.org/en-US/docs/Web/API/PaymentAddress/organization

Property.

[Read Only]

The organization read-only property of the `web.payments.PaymentAddress`
returns a string containing the name of the organization, firm,
or institution at the address.

`var paymentOrganization = PaymentAddress.organization;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/PaymentAddress/organization`
sourceraw docstring

phonecljs

(phone this)

Property.

[Read Only]

The read-only phone property of the web.payments.PaymentAddress returns a string containing the telephone number of the recipient contact person.

var paymentPhone = PaymentAddress.phone;

See also: https://developer.mozilla.org/en-US/docs/Web/API/PaymentAddress/phone

Property.

[Read Only]

The read-only phone property of the `web.payments.PaymentAddress`
returns a string containing the telephone number of the recipient
contact person.

`var paymentPhone = PaymentAddress.phone;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/PaymentAddress/phone`
sourceraw docstring

postal-codecljs

(postal-code this)

Property.

[Read Only]

The postalCode read-only property of the web.payments.PaymentAddress returns a string containing a code used by a jurisdiction for routing, for example, the ZIP Code in the United States or the Index Number (PIN code) in India.

var paymentPostalCode = PaymentAddress.postalCode;

See also: https://developer.mozilla.org/en-US/docs/Web/API/PaymentAddress/postalCode

Property.

[Read Only]

The postalCode read-only property of the `web.payments.PaymentAddress`
returns a string containing a code used by a jurisdiction for
routing, for example, the ZIP Code in the United States or the
Index Number (PIN code) in India.

`var paymentPostalCode = PaymentAddress.postalCode;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/PaymentAddress/postalCode`
sourceraw docstring

recipientcljs

(recipient this)

Property.

[Read Only]

The read-only recipient property of the web.payments.PaymentAddress returns a string containing the name of the recipient, purchaser, contact person at the payment address.

var paymentRecipient = PaymentAddress.recipient;

See also: https://developer.mozilla.org/en-US/docs/Web/API/PaymentAddress/recipient

Property.

[Read Only]

The read-only recipient property of the `web.payments.PaymentAddress`
returns a string containing the name of the recipient, purchaser,
contact person at the payment address.

`var paymentRecipient = PaymentAddress.recipient;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/PaymentAddress/recipient`
sourceraw docstring

regioncljs

(region this)

Property.

[Read Only]

The read-only region property of the web.payments.PaymentAddress returns a string containing the top-level administrative subdivision the country in which the address is located. For example, this be a state, province, oblast, or prefecture.

var paymentRegion = PaymentAddress.region;

See also: https://developer.mozilla.org/en-US/docs/Web/API/PaymentAddress/region

Property.

[Read Only]

The read-only region property of the `web.payments.PaymentAddress`
returns a string containing the top-level administrative subdivision
the country in which the address is located. For example, this
be a state, province, oblast, or prefecture.

`var paymentRegion = PaymentAddress.region;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/PaymentAddress/region`
sourceraw docstring

region-codecljs

(region-code this)

Property.

[Read Only]

The regionCode read-only attribute of the web.payments.PaymentAddress returns a one-, two-, or three-alphanumeric code (web.DOMString) the region of the address (e.g., "CA" for California, or "11" Lisbon, Portugal).

var regionCode = paymentAddress.regionCode;

See also: https://developer.mozilla.org/en-US/docs/Web/API/PaymentAddress/regionCode

Property.

[Read Only]

The regionCode read-only attribute of the `web.payments.PaymentAddress`
returns a one-, two-, or three-alphanumeric code (`web.DOMString`)
the region of the address (e.g., \"CA\" for California, or \"11\"
Lisbon, Portugal).

`var regionCode = paymentAddress.regionCode;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/PaymentAddress/regionCode`
sourceraw docstring

sorting-codecljs

(sorting-code this)

Property.

[Read Only]

The sortingCode read-only property of the web.payments.PaymentAddress returns a string containing a postal sorting code such as is in France.

var sortingCode = PaymentAddress.sortingCode;

See also: https://developer.mozilla.org/en-US/docs/Web/API/PaymentAddress/sortingCode

Property.

[Read Only]

The sortingCode read-only property of the `web.payments.PaymentAddress`
returns a string containing a postal sorting code such as is
in France.

`var sortingCode = PaymentAddress.sortingCode;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/PaymentAddress/sortingCode`
sourceraw docstring

to-jsoncljs

(to-json this)

Method.

[Experimental]

The toJSON() property of the web.payments.PaymentAddress interface a standard serializer that returns a JSON representation of the object's properties.

var json = PaymentAddress.toJSON()

See also: https://developer.mozilla.org/en-US/docs/Web/API/PaymentAddress/toJSON

Method.

[Experimental]

The toJSON() property of the `web.payments.PaymentAddress` interface
a standard serializer that returns a JSON representation of the
object's properties.

`var json = PaymentAddress.toJSON()`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/PaymentAddress/toJSON`
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close