/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v3"; export type GetCreateOperationRequest = { /** * Unique identifier for a company. */ companyId: string; /** * Push operation key. */ pushOperationKey: string; }; /** @internal */ export type GetCreateOperationRequest$Outbound = { companyId: string; pushOperationKey: string; }; /** @internal */ export const GetCreateOperationRequest$outboundSchema: z.ZodType< GetCreateOperationRequest$Outbound, z.ZodTypeDef, GetCreateOperationRequest > = z.object({ companyId: z.string(), pushOperationKey: z.string(), }); export function getCreateOperationRequestToJSON( getCreateOperationRequest: GetCreateOperationRequest, ): string { return JSON.stringify( GetCreateOperationRequest$outboundSchema.parse(getCreateOperationRequest), ); }