import { ClientSDK, RequestOptions } from "../lib/sdks.js"; import * as operations from "../models/operations/index.js"; export declare class Support extends ClientSDK { /** * Create a support ticket for a Moov account. * * To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/) * you'll need to specify the `/accounts/{accountID}/tickets.write` scope. * * If you're creating the ticket on behalf of another account, then you'll need to * specify the `/accounts/{partnerAccountID}/tickets.write` and `/accounts/{accountID}/profile.read` scopes. */ createTicket(request: operations.CreateTicketRequest, options?: RequestOptions): Promise; /** * List all the support tickets created under a Moov account. * * To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/) * you'll need to specify the `/accounts/{accountID}/tickets.read` scope. * * If you're listing another account's tickets, then you'll need to * specify the `/accounts/{partnerAccountID}/tickets.read` and `/accounts/{accountID}/profile.read` scopes. */ listTickets(request: operations.ListTicketsRequest, options?: RequestOptions): Promise; /** * Retrieve a support ticket by ID. * * To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/) * you'll need to specify the `/accounts/{accountID}/tickets.read` scope. * * If you're retrieving another account's ticket, then you'll need to * specify the `/accounts/{partnerAccountID}/tickets.read` and `/accounts/{accountID}/profile.read` scopes. */ getTicket(request: operations.GetTicketRequest, options?: RequestOptions): Promise; /** * Updates a support ticket. * * To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/) * you'll need to specify the `/accounts/{accountID}/tickets.write` scope. * * If you're updating the ticket on behalf of another account, then you'll need to * specify the `/accounts/{partnerAccountID}/tickets.write` and `/accounts/{accountID}/profile.read` scopes. */ updateTicket(request: operations.UpdateTicketRequest, options?: RequestOptions): Promise; /** * List all the messages for a support ticket. * * To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/) * you'll need to specify the `/accounts/{accountID}/tickets.read` scope. * * If you're listing another account's messages, then you'll need to * specify the `/accounts/{partnerAccountID}/tickets.read` and `/accounts/{accountID}/profile.read` scopes. */ listTicketMessages(request: operations.ListTicketMessagesRequest, options?: RequestOptions): Promise; } //# sourceMappingURL=support.d.ts.map