/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import { accountUpdaterJobsCreate } from "../funcs/accountUpdaterJobsCreate.js"; import { ClientSDK, RequestOptions } from "../lib/sdks.js"; import * as components from "../models/components/index.js"; import { unwrapAsync } from "../types/fp.js"; export class Jobs extends ClientSDK { /** * Create account updater job * * @remarks * Schedule one or more stored cards for an account update. */ async create( accountUpdaterJobCreate: components.AccountUpdaterJobCreate, merchantAccountId?: string | null | undefined, options?: RequestOptions, ): Promise { return unwrapAsync(accountUpdaterJobsCreate( this, accountUpdaterJobCreate, merchantAccountId, options, )); } }