import AccountBusinessAddressResource from "../definitions/AccountBusinessAddressResource"; import GetAccountInfoResponse from "../definitions/GetAccountInfoResponse"; import ModifyAccountBusinessAddressRequest from "../definitions/ModifyAccountBusinessAddressRequest"; import PathSegment from "../PathSegment"; export default class BusinessAddress extends PathSegment { constructor(prv: PathSegment, id?: string, service?: any); /** *

Required Permissions

PermissionDescription
ReadAccountsViewing user account info (including name, business name, address and phone number/account number)

Usage Plan Group

Light

*/ get(): Promise; /** *

Required Permissions

PermissionDescription
ReadAccountsViewing user account info (including name, business name, address and phone number/account number)

Usage Plan Group

Light

* return {ApiResponse} */ getRaw(): Promise; /** *

Required Permissions

PermissionDescription
EditAccountsViewing and updating user account info (including name, business name, address and phone number/account number)
ReadAccountsViewing user account info (including name, business name, address and phone number/account number)

Usage Plan Group

Medium

*/ put(body: ModifyAccountBusinessAddressRequest): Promise; /** *

Required Permissions

PermissionDescription
EditAccountsViewing and updating user account info (including name, business name, address and phone number/account number)
ReadAccountsViewing user account info (including name, business name, address and phone number/account number)

Usage Plan Group

Medium

* return {ApiResponse} */ putRaw(body: ModifyAccountBusinessAddressRequest): Promise; }