Skip to content

Latest commit

 

History

History
32 lines (25 loc) · 1.17 KB

File metadata and controls

32 lines (25 loc) · 1.17 KB

Address

Properties

Name Type Description Notes
name string The name of the business using the toll-free number. [default to undefined]
addr1 string The address of the business using the toll-free number. [default to undefined]
addr2 string The address of the business using the toll-free number. [optional] [default to undefined]
city string The city of the business using the toll-free number. [default to undefined]
state string The state of the business using the toll-free number. [default to undefined]
zip string The zip of the business using the toll-free number. [default to undefined]
url string The website of the business using the toll-free number. [default to undefined]

Example

import { Address } from 'bandwidth-sdk';

const instance: Address = {
    name,
    addr1,
    addr2,
    city,
    state,
    zip,
    url,
};

[Back to Model list] [Back to API list] [Back to README]