/*
 * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
 */

import * as z from "zod/v3";

export type GetBulkJobStatusRequest = {
  accountId?: string | undefined;
  jobId?: string | undefined;
};

/** @internal */
export type GetBulkJobStatusRequest$Outbound = {
  accountId: string;
  jobId: string;
};

/** @internal */
export const GetBulkJobStatusRequest$outboundSchema: z.ZodType<
  GetBulkJobStatusRequest$Outbound,
  z.ZodTypeDef,
  GetBulkJobStatusRequest
> = z.object({
  accountId: z.string().default("00000000-0000-0000-0000-000000000000"),
  jobId: z.string().default("00000000-0000-0000-0000-000000000000"),
});

export function getBulkJobStatusRequestToJSON(
  getBulkJobStatusRequest: GetBulkJobStatusRequest,
): string {
  return JSON.stringify(
    GetBulkJobStatusRequest$outboundSchema.parse(getBulkJobStatusRequest),
  );
}
