// This is Generated Source. import PathSegment from "../PathSegment"; export default class ProfileImage extends PathSegment { constructor(prv: PathSegment, id?: string, service?) { super("profile-image", id, prv, service); } /** *

Since 1.0.20 (Release 7.4)

Returns the extension profile image.

Required Permissions

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

Usage Plan Group

Medium

*/ get(): Promise { return this._send({ body: undefined, ignoreId: true, method: "get", query: undefined, }); } /** *

Since 1.0.20 (Release 7.4)

Returns the extension profile image.

Required Permissions

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

Usage Plan Group

Medium

* return {ApiResponse} */ getRaw(): Promise { return this._send({ body: undefined, ignoreId: true, method: "get", query: undefined, }); } }