import { ClientSDK, RequestOptions } from "../lib/sdks.js"; import * as operations from "../models/operations/index.js"; export declare class Representatives extends ClientSDK { /** * Moov accounts associated with businesses require information regarding individuals who represent the business. * You can provide this information by creating a representative. Each account is allowed a maximum of 7 representatives. * Read our [business representatives guide](https://docs.moov.io/guides/accounts/requirements/business-representatives/) to learn more. * * To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/) * you'll need to specify the `/accounts/{accountID}/representatives.write` scope. */ create(request: operations.CreateRepresentativeRequest, options?: RequestOptions): Promise; /** * A Moov account may have multiple representatives depending on the associated business's ownership and management structure. * You can use this method to list all the representatives for a given Moov account. * Note that Moov accounts associated with an individual do not have representatives. * Read our [business representatives guide](https://docs.moov.io/guides/accounts/requirements/business-representatives/) to learn more. * * To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/) * you'll need to specify the `/accounts/{accountID}/representatives.read` scope. */ list(request: operations.ListRepresentativesRequest, options?: RequestOptions): Promise; /** * Deletes a business representative associated with a Moov account. Read our [business representatives guide](https://docs.moov.io/guides/accounts/requirements/business-representatives/) to learn more. * * To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/) * you'll need to specify the `/accounts/{accountID}/representatives.write` scope. */ delete(request: operations.DeleteRepresentativeRequest, options?: RequestOptions): Promise; /** * Retrieve a specific representative associated with a given Moov account. Read our [business representatives guide](https://docs.moov.io/guides/accounts/requirements/business-representatives/) to learn more. * * To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/) * you'll need to specify the `/accounts/{accountID}/representatives.read` scope. */ get(request: operations.GetRepresentativeRequest, options?: RequestOptions): Promise; /** * If a representative's information has changed you can patch the information associated with a specific representative ID. * Read our [business representatives guide](https://docs.moov.io/guides/accounts/requirements/business-representatives/) to learn more. * * When **can** profile data be updated: * * - For unverified representatives, all profile data can be edited. * - During the verification process, missing or incomplete profile data can be edited. * - Verified representatives can only add missing profile data. * * When **can't** profile data be updated: * * - Verified representatives cannot change any existing profile data. * * If you need to update information in a locked state, please contact Moov support. * * To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/) * you'll need to specify the `/accounts/{accountID}/representatives.write` scope. */ update(request: operations.UpdateRepresentativeRequest, options?: RequestOptions): Promise; } //# sourceMappingURL=representatives.d.ts.map