/** * This file was auto-generated by Fern from our API Definition. */ import * as serializers from "../index"; import * as Chariot from "../../api/index"; import * as core from "../../core"; import { UnintegratedGrantStatus } from "./UnintegratedGrantStatus"; import { GrantAddress } from "./GrantAddress"; export declare const UnintegratedGrant: core.serialization.ObjectSchema; export declare namespace UnintegratedGrant { interface Raw { id: string; userFriendlyId?: string | null; trackingId?: string | null; workflowSessionId: string; fundId: string; createdAt?: string | null; updatedAt?: string | null; amount: number; status?: UnintegratedGrantStatus.Raw | null; metadata?: Record | null; firstName?: string | null; lastName?: string | null; phone?: string | null; email?: string | null; address?: GrantAddress.Raw | null; note?: string | null; paymentChannel?: "offline" | null; } }