import { z } from 'zod';

/**
 * Generated by orval v7.10.0 🍺
 * Do not edit manually.
 * ows-abacus-contract
 * OpenAPI spec version: 1.0.0
 */

/**
 * Retrieves contract details
 */
declare const getContractPathContractIdMin = 0;
declare const getContractParams: z.ZodObject<{
    contract_id: z.ZodNumber;
}, "strip", z.ZodTypeAny, {
    contract_id: number;
}, {
    contract_id: number;
}>;
declare const getContractHeader: z.ZodObject<{
    "Correlation-Id": z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
    "Correlation-Id"?: string | undefined;
}, {
    "Correlation-Id"?: string | undefined;
}>;
declare const getContractResponseAccountIdMin = 0;
declare const getContractResponseContractIdMin = 0;
declare const getContractResponse: z.ZodObject<{
    account_id: z.ZodOptional<z.ZodNumber>;
    contract_id: z.ZodOptional<z.ZodNumber>;
    contract_name: z.ZodOptional<z.ZodString>;
    contract_type: z.ZodOptional<z.ZodEnum<["distribution", "legacy_distribution", "neighbouring_rights"]>>;
    created_at: z.ZodOptional<z.ZodString>;
    created_by: z.ZodOptional<z.ZodString>;
    execution_date: z.ZodOptional<z.ZodString>;
    general_note: z.ZodOptional<z.ZodString>;
    initial_start_date: z.ZodOptional<z.ZodString>;
    is_excluded_from_accounting_run: z.ZodOptional<z.ZodBoolean>;
    last_modified: z.ZodOptional<z.ZodString>;
    last_modified_by: z.ZodOptional<z.ZodString>;
    oa_contract_id: z.ZodOptional<z.ZodNumber>;
    reference_sap_profit_center_id: z.ZodOptional<z.ZodNumber>;
    reference_signing_entity_id: z.ZodOptional<z.ZodNumber>;
    sap_created_at: z.ZodOptional<z.ZodString>;
    summary_note: z.ZodOptional<z.ZodString>;
    term_end: z.ZodOptional<z.ZodString>;
    term_start: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
    contract_id?: number | undefined;
    contract_name?: string | undefined;
    contract_type?: "distribution" | "legacy_distribution" | "neighbouring_rights" | undefined;
    account_id?: number | undefined;
    created_at?: string | undefined;
    created_by?: string | undefined;
    execution_date?: string | undefined;
    general_note?: string | undefined;
    initial_start_date?: string | undefined;
    is_excluded_from_accounting_run?: boolean | undefined;
    last_modified?: string | undefined;
    last_modified_by?: string | undefined;
    oa_contract_id?: number | undefined;
    reference_sap_profit_center_id?: number | undefined;
    reference_signing_entity_id?: number | undefined;
    sap_created_at?: string | undefined;
    summary_note?: string | undefined;
    term_end?: string | undefined;
    term_start?: string | undefined;
}, {
    contract_id?: number | undefined;
    contract_name?: string | undefined;
    contract_type?: "distribution" | "legacy_distribution" | "neighbouring_rights" | undefined;
    account_id?: number | undefined;
    created_at?: string | undefined;
    created_by?: string | undefined;
    execution_date?: string | undefined;
    general_note?: string | undefined;
    initial_start_date?: string | undefined;
    is_excluded_from_accounting_run?: boolean | undefined;
    last_modified?: string | undefined;
    last_modified_by?: string | undefined;
    oa_contract_id?: number | undefined;
    reference_sap_profit_center_id?: number | undefined;
    reference_signing_entity_id?: number | undefined;
    sap_created_at?: string | undefined;
    summary_note?: string | undefined;
    term_end?: string | undefined;
    term_start?: string | undefined;
}>;
/**
 * Update contract details for a specified contract
 */
declare const updateContractPathContractIdMin = 0;
declare const updateContractParams: z.ZodObject<{
    contract_id: z.ZodNumber;
}, "strip", z.ZodTypeAny, {
    contract_id: number;
}, {
    contract_id: number;
}>;
declare const updateContractHeader: z.ZodObject<{
    "Correlation-Id": z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
    "Correlation-Id"?: string | undefined;
}, {
    "Correlation-Id"?: string | undefined;
}>;
declare const updateContractBody: z.ZodObject<{
    contract_name: z.ZodOptional<z.ZodString>;
    general_note: z.ZodOptional<z.ZodString>;
    execution_date: z.ZodOptional<z.ZodString>;
    initial_start_date: z.ZodOptional<z.ZodString>;
    is_excluded_from_accounting_run: z.ZodOptional<z.ZodBoolean>;
    reference_sap_profit_center_id: z.ZodOptional<z.ZodNumber>;
    reference_signing_entity_id: z.ZodOptional<z.ZodNumber>;
    sap_created_at: z.ZodOptional<z.ZodString>;
    summary_note: z.ZodOptional<z.ZodString>;
    term_end: z.ZodOptional<z.ZodString>;
    term_start: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
    contract_name?: string | undefined;
    execution_date?: string | undefined;
    general_note?: string | undefined;
    initial_start_date?: string | undefined;
    is_excluded_from_accounting_run?: boolean | undefined;
    reference_sap_profit_center_id?: number | undefined;
    reference_signing_entity_id?: number | undefined;
    sap_created_at?: string | undefined;
    summary_note?: string | undefined;
    term_end?: string | undefined;
    term_start?: string | undefined;
}, {
    contract_name?: string | undefined;
    execution_date?: string | undefined;
    general_note?: string | undefined;
    initial_start_date?: string | undefined;
    is_excluded_from_accounting_run?: boolean | undefined;
    reference_sap_profit_center_id?: number | undefined;
    reference_signing_entity_id?: number | undefined;
    sap_created_at?: string | undefined;
    summary_note?: string | undefined;
    term_end?: string | undefined;
    term_start?: string | undefined;
}>;
declare const updateContractResponseAccountIdMin = 0;
declare const updateContractResponseContractIdMin = 0;
declare const updateContractResponse: z.ZodObject<{
    account_id: z.ZodOptional<z.ZodNumber>;
    contract_id: z.ZodOptional<z.ZodNumber>;
    contract_name: z.ZodOptional<z.ZodString>;
    contract_type: z.ZodOptional<z.ZodEnum<["distribution", "legacy_distribution", "neighbouring_rights"]>>;
    created_at: z.ZodOptional<z.ZodString>;
    created_by: z.ZodOptional<z.ZodString>;
    execution_date: z.ZodOptional<z.ZodString>;
    general_note: z.ZodOptional<z.ZodString>;
    initial_start_date: z.ZodOptional<z.ZodString>;
    is_excluded_from_accounting_run: z.ZodOptional<z.ZodBoolean>;
    last_modified: z.ZodOptional<z.ZodString>;
    last_modified_by: z.ZodOptional<z.ZodString>;
    oa_contract_id: z.ZodOptional<z.ZodNumber>;
    reference_sap_profit_center_id: z.ZodOptional<z.ZodNumber>;
    reference_signing_entity_id: z.ZodOptional<z.ZodNumber>;
    sap_created_at: z.ZodOptional<z.ZodString>;
    summary_note: z.ZodOptional<z.ZodString>;
    term_end: z.ZodOptional<z.ZodString>;
    term_start: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
    contract_id?: number | undefined;
    contract_name?: string | undefined;
    contract_type?: "distribution" | "legacy_distribution" | "neighbouring_rights" | undefined;
    account_id?: number | undefined;
    created_at?: string | undefined;
    created_by?: string | undefined;
    execution_date?: string | undefined;
    general_note?: string | undefined;
    initial_start_date?: string | undefined;
    is_excluded_from_accounting_run?: boolean | undefined;
    last_modified?: string | undefined;
    last_modified_by?: string | undefined;
    oa_contract_id?: number | undefined;
    reference_sap_profit_center_id?: number | undefined;
    reference_signing_entity_id?: number | undefined;
    sap_created_at?: string | undefined;
    summary_note?: string | undefined;
    term_end?: string | undefined;
    term_start?: string | undefined;
}, {
    contract_id?: number | undefined;
    contract_name?: string | undefined;
    contract_type?: "distribution" | "legacy_distribution" | "neighbouring_rights" | undefined;
    account_id?: number | undefined;
    created_at?: string | undefined;
    created_by?: string | undefined;
    execution_date?: string | undefined;
    general_note?: string | undefined;
    initial_start_date?: string | undefined;
    is_excluded_from_accounting_run?: boolean | undefined;
    last_modified?: string | undefined;
    last_modified_by?: string | undefined;
    oa_contract_id?: number | undefined;
    reference_sap_profit_center_id?: number | undefined;
    reference_signing_entity_id?: number | undefined;
    sap_created_at?: string | undefined;
    summary_note?: string | undefined;
    term_end?: string | undefined;
    term_start?: string | undefined;
}>;
/**
 * Get the contract lifecycle associated to the specified contract
 */
declare const getContractLifecyclePathContractIdMin = 0;
declare const getContractLifecycleParams: z.ZodObject<{
    contract_id: z.ZodNumber;
}, "strip", z.ZodTypeAny, {
    contract_id: number;
}, {
    contract_id: number;
}>;
declare const getContractLifecycleResponseContractLifecycleIdMin = 0;
declare const getContractLifecycleResponseContractIdMin = 0;
declare const getContractLifecycleResponseContractLifecycleScheduleIdMin = 0;
declare const getContractLifecycleResponse: z.ZodObject<{
    contract_lifecycle_id: z.ZodOptional<z.ZodNumber>;
    contract_id: z.ZodOptional<z.ZodNumber>;
    contract_lifecycle_schedule_id: z.ZodOptional<z.ZodNumber>;
    lifecycle_status: z.ZodOptional<z.ZodEnum<["active", "in_collection_period", "inactive", "init", "terminated", "to_be_terminated"]>>;
    lifecycle_term_start: z.ZodOptional<z.ZodString>;
    lifecycle_term_end: z.ZodOptional<z.ZodString>;
    renewal_effective: z.ZodOptional<z.ZodString>;
    termination_notice_deadline: z.ZodOptional<z.ZodString>;
    termination_notice_received: z.ZodOptional<z.ZodString>;
    termination_effective: z.ZodOptional<z.ZodString>;
    collection_start: z.ZodOptional<z.ZodString>;
    collection_end: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
    contract_id?: number | undefined;
    contract_lifecycle_id?: number | undefined;
    contract_lifecycle_schedule_id?: number | undefined;
    lifecycle_status?: "active" | "in_collection_period" | "inactive" | "init" | "terminated" | "to_be_terminated" | undefined;
    lifecycle_term_start?: string | undefined;
    lifecycle_term_end?: string | undefined;
    renewal_effective?: string | undefined;
    termination_notice_deadline?: string | undefined;
    termination_notice_received?: string | undefined;
    termination_effective?: string | undefined;
    collection_start?: string | undefined;
    collection_end?: string | undefined;
}, {
    contract_id?: number | undefined;
    contract_lifecycle_id?: number | undefined;
    contract_lifecycle_schedule_id?: number | undefined;
    lifecycle_status?: "active" | "in_collection_period" | "inactive" | "init" | "terminated" | "to_be_terminated" | undefined;
    lifecycle_term_start?: string | undefined;
    lifecycle_term_end?: string | undefined;
    renewal_effective?: string | undefined;
    termination_notice_deadline?: string | undefined;
    termination_notice_received?: string | undefined;
    termination_effective?: string | undefined;
    collection_start?: string | undefined;
    collection_end?: string | undefined;
}>;
/**
 * Terminate a contract
 */
declare const terminateContractPathContractIdMin = 0;
declare const terminateContractParams: z.ZodObject<{
    contract_id: z.ZodNumber;
}, "strip", z.ZodTypeAny, {
    contract_id: number;
}, {
    contract_id: number;
}>;
declare const terminateContractHeader: z.ZodObject<{
    "Correlation-Id": z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
    "Correlation-Id"?: string | undefined;
}, {
    "Correlation-Id"?: string | undefined;
}>;
declare const terminateContractBody: z.ZodObject<{
    termination_effective: z.ZodString;
    termination_notice_received: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
    termination_effective: string;
    termination_notice_received?: string | undefined;
}, {
    termination_effective: string;
    termination_notice_received?: string | undefined;
}>;
declare const terminateContractResponseAccountIdMin = 0;
declare const terminateContractResponseContractIdMin = 0;
declare const terminateContractResponse: z.ZodObject<{
    account_id: z.ZodOptional<z.ZodNumber>;
    contract_id: z.ZodOptional<z.ZodNumber>;
    contract_name: z.ZodOptional<z.ZodString>;
    contract_type: z.ZodOptional<z.ZodEnum<["distribution", "legacy_distribution", "neighbouring_rights"]>>;
    created_at: z.ZodOptional<z.ZodString>;
    created_by: z.ZodOptional<z.ZodString>;
    execution_date: z.ZodOptional<z.ZodString>;
    general_note: z.ZodOptional<z.ZodString>;
    initial_start_date: z.ZodOptional<z.ZodString>;
    is_excluded_from_accounting_run: z.ZodOptional<z.ZodBoolean>;
    last_modified: z.ZodOptional<z.ZodString>;
    last_modified_by: z.ZodOptional<z.ZodString>;
    oa_contract_id: z.ZodOptional<z.ZodNumber>;
    reference_sap_profit_center_id: z.ZodOptional<z.ZodNumber>;
    reference_signing_entity_id: z.ZodOptional<z.ZodNumber>;
    sap_created_at: z.ZodOptional<z.ZodString>;
    summary_note: z.ZodOptional<z.ZodString>;
    term_end: z.ZodOptional<z.ZodString>;
    term_start: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
    contract_id?: number | undefined;
    contract_name?: string | undefined;
    contract_type?: "distribution" | "legacy_distribution" | "neighbouring_rights" | undefined;
    account_id?: number | undefined;
    created_at?: string | undefined;
    created_by?: string | undefined;
    execution_date?: string | undefined;
    general_note?: string | undefined;
    initial_start_date?: string | undefined;
    is_excluded_from_accounting_run?: boolean | undefined;
    last_modified?: string | undefined;
    last_modified_by?: string | undefined;
    oa_contract_id?: number | undefined;
    reference_sap_profit_center_id?: number | undefined;
    reference_signing_entity_id?: number | undefined;
    sap_created_at?: string | undefined;
    summary_note?: string | undefined;
    term_end?: string | undefined;
    term_start?: string | undefined;
}, {
    contract_id?: number | undefined;
    contract_name?: string | undefined;
    contract_type?: "distribution" | "legacy_distribution" | "neighbouring_rights" | undefined;
    account_id?: number | undefined;
    created_at?: string | undefined;
    created_by?: string | undefined;
    execution_date?: string | undefined;
    general_note?: string | undefined;
    initial_start_date?: string | undefined;
    is_excluded_from_accounting_run?: boolean | undefined;
    last_modified?: string | undefined;
    last_modified_by?: string | undefined;
    oa_contract_id?: number | undefined;
    reference_sap_profit_center_id?: number | undefined;
    reference_signing_entity_id?: number | undefined;
    sap_created_at?: string | undefined;
    summary_note?: string | undefined;
    term_end?: string | undefined;
    term_start?: string | undefined;
}>;
/**
 * Reactivate a contract
 */
declare const reactivateContractPathContractIdMin = 0;
declare const reactivateContractParams: z.ZodObject<{
    contract_id: z.ZodNumber;
}, "strip", z.ZodTypeAny, {
    contract_id: number;
}, {
    contract_id: number;
}>;
declare const reactivateContractHeader: z.ZodObject<{
    "Correlation-Id": z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
    "Correlation-Id"?: string | undefined;
}, {
    "Correlation-Id"?: string | undefined;
}>;
declare const reactivateContractResponseAccountIdMin = 0;
declare const reactivateContractResponseContractIdMin = 0;
declare const reactivateContractResponse: z.ZodObject<{
    account_id: z.ZodOptional<z.ZodNumber>;
    contract_id: z.ZodOptional<z.ZodNumber>;
    contract_name: z.ZodOptional<z.ZodString>;
    contract_type: z.ZodOptional<z.ZodEnum<["distribution", "legacy_distribution", "neighbouring_rights"]>>;
    created_at: z.ZodOptional<z.ZodString>;
    created_by: z.ZodOptional<z.ZodString>;
    execution_date: z.ZodOptional<z.ZodString>;
    general_note: z.ZodOptional<z.ZodString>;
    initial_start_date: z.ZodOptional<z.ZodString>;
    is_excluded_from_accounting_run: z.ZodOptional<z.ZodBoolean>;
    last_modified: z.ZodOptional<z.ZodString>;
    last_modified_by: z.ZodOptional<z.ZodString>;
    oa_contract_id: z.ZodOptional<z.ZodNumber>;
    reference_sap_profit_center_id: z.ZodOptional<z.ZodNumber>;
    reference_signing_entity_id: z.ZodOptional<z.ZodNumber>;
    sap_created_at: z.ZodOptional<z.ZodString>;
    summary_note: z.ZodOptional<z.ZodString>;
    term_end: z.ZodOptional<z.ZodString>;
    term_start: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
    contract_id?: number | undefined;
    contract_name?: string | undefined;
    contract_type?: "distribution" | "legacy_distribution" | "neighbouring_rights" | undefined;
    account_id?: number | undefined;
    created_at?: string | undefined;
    created_by?: string | undefined;
    execution_date?: string | undefined;
    general_note?: string | undefined;
    initial_start_date?: string | undefined;
    is_excluded_from_accounting_run?: boolean | undefined;
    last_modified?: string | undefined;
    last_modified_by?: string | undefined;
    oa_contract_id?: number | undefined;
    reference_sap_profit_center_id?: number | undefined;
    reference_signing_entity_id?: number | undefined;
    sap_created_at?: string | undefined;
    summary_note?: string | undefined;
    term_end?: string | undefined;
    term_start?: string | undefined;
}, {
    contract_id?: number | undefined;
    contract_name?: string | undefined;
    contract_type?: "distribution" | "legacy_distribution" | "neighbouring_rights" | undefined;
    account_id?: number | undefined;
    created_at?: string | undefined;
    created_by?: string | undefined;
    execution_date?: string | undefined;
    general_note?: string | undefined;
    initial_start_date?: string | undefined;
    is_excluded_from_accounting_run?: boolean | undefined;
    last_modified?: string | undefined;
    last_modified_by?: string | undefined;
    oa_contract_id?: number | undefined;
    reference_sap_profit_center_id?: number | undefined;
    reference_signing_entity_id?: number | undefined;
    sap_created_at?: string | undefined;
    summary_note?: string | undefined;
    term_end?: string | undefined;
    term_start?: string | undefined;
}>;
/**
 * Get a list of contracts by contract_id
 */
declare const getContractsBodyMin = 0;
declare const getContractsBodyItem: z.ZodNumber;
declare const getContractsBody: z.ZodArray<z.ZodNumber, "many">;
declare const getContractsResponseAccountIdMin = 0;
declare const getContractsResponseContractIdMin = 0;
declare const getContractsResponseItem: z.ZodObject<{
    account_id: z.ZodOptional<z.ZodNumber>;
    contract_id: z.ZodOptional<z.ZodNumber>;
    contract_name: z.ZodOptional<z.ZodString>;
    contract_type: z.ZodOptional<z.ZodEnum<["distribution", "legacy_distribution", "neighbouring_rights"]>>;
    created_at: z.ZodOptional<z.ZodString>;
    created_by: z.ZodOptional<z.ZodString>;
    execution_date: z.ZodOptional<z.ZodString>;
    general_note: z.ZodOptional<z.ZodString>;
    initial_start_date: z.ZodOptional<z.ZodString>;
    is_excluded_from_accounting_run: z.ZodOptional<z.ZodBoolean>;
    last_modified: z.ZodOptional<z.ZodString>;
    last_modified_by: z.ZodOptional<z.ZodString>;
    oa_contract_id: z.ZodOptional<z.ZodNumber>;
    reference_sap_profit_center_id: z.ZodOptional<z.ZodNumber>;
    reference_signing_entity_id: z.ZodOptional<z.ZodNumber>;
    sap_created_at: z.ZodOptional<z.ZodString>;
    summary_note: z.ZodOptional<z.ZodString>;
    term_end: z.ZodOptional<z.ZodString>;
    term_start: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
    contract_id?: number | undefined;
    contract_name?: string | undefined;
    contract_type?: "distribution" | "legacy_distribution" | "neighbouring_rights" | undefined;
    account_id?: number | undefined;
    created_at?: string | undefined;
    created_by?: string | undefined;
    execution_date?: string | undefined;
    general_note?: string | undefined;
    initial_start_date?: string | undefined;
    is_excluded_from_accounting_run?: boolean | undefined;
    last_modified?: string | undefined;
    last_modified_by?: string | undefined;
    oa_contract_id?: number | undefined;
    reference_sap_profit_center_id?: number | undefined;
    reference_signing_entity_id?: number | undefined;
    sap_created_at?: string | undefined;
    summary_note?: string | undefined;
    term_end?: string | undefined;
    term_start?: string | undefined;
}, {
    contract_id?: number | undefined;
    contract_name?: string | undefined;
    contract_type?: "distribution" | "legacy_distribution" | "neighbouring_rights" | undefined;
    account_id?: number | undefined;
    created_at?: string | undefined;
    created_by?: string | undefined;
    execution_date?: string | undefined;
    general_note?: string | undefined;
    initial_start_date?: string | undefined;
    is_excluded_from_accounting_run?: boolean | undefined;
    last_modified?: string | undefined;
    last_modified_by?: string | undefined;
    oa_contract_id?: number | undefined;
    reference_sap_profit_center_id?: number | undefined;
    reference_signing_entity_id?: number | undefined;
    sap_created_at?: string | undefined;
    summary_note?: string | undefined;
    term_end?: string | undefined;
    term_start?: string | undefined;
}>;
declare const getContractsResponse: z.ZodArray<z.ZodObject<{
    account_id: z.ZodOptional<z.ZodNumber>;
    contract_id: z.ZodOptional<z.ZodNumber>;
    contract_name: z.ZodOptional<z.ZodString>;
    contract_type: z.ZodOptional<z.ZodEnum<["distribution", "legacy_distribution", "neighbouring_rights"]>>;
    created_at: z.ZodOptional<z.ZodString>;
    created_by: z.ZodOptional<z.ZodString>;
    execution_date: z.ZodOptional<z.ZodString>;
    general_note: z.ZodOptional<z.ZodString>;
    initial_start_date: z.ZodOptional<z.ZodString>;
    is_excluded_from_accounting_run: z.ZodOptional<z.ZodBoolean>;
    last_modified: z.ZodOptional<z.ZodString>;
    last_modified_by: z.ZodOptional<z.ZodString>;
    oa_contract_id: z.ZodOptional<z.ZodNumber>;
    reference_sap_profit_center_id: z.ZodOptional<z.ZodNumber>;
    reference_signing_entity_id: z.ZodOptional<z.ZodNumber>;
    sap_created_at: z.ZodOptional<z.ZodString>;
    summary_note: z.ZodOptional<z.ZodString>;
    term_end: z.ZodOptional<z.ZodString>;
    term_start: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
    contract_id?: number | undefined;
    contract_name?: string | undefined;
    contract_type?: "distribution" | "legacy_distribution" | "neighbouring_rights" | undefined;
    account_id?: number | undefined;
    created_at?: string | undefined;
    created_by?: string | undefined;
    execution_date?: string | undefined;
    general_note?: string | undefined;
    initial_start_date?: string | undefined;
    is_excluded_from_accounting_run?: boolean | undefined;
    last_modified?: string | undefined;
    last_modified_by?: string | undefined;
    oa_contract_id?: number | undefined;
    reference_sap_profit_center_id?: number | undefined;
    reference_signing_entity_id?: number | undefined;
    sap_created_at?: string | undefined;
    summary_note?: string | undefined;
    term_end?: string | undefined;
    term_start?: string | undefined;
}, {
    contract_id?: number | undefined;
    contract_name?: string | undefined;
    contract_type?: "distribution" | "legacy_distribution" | "neighbouring_rights" | undefined;
    account_id?: number | undefined;
    created_at?: string | undefined;
    created_by?: string | undefined;
    execution_date?: string | undefined;
    general_note?: string | undefined;
    initial_start_date?: string | undefined;
    is_excluded_from_accounting_run?: boolean | undefined;
    last_modified?: string | undefined;
    last_modified_by?: string | undefined;
    oa_contract_id?: number | undefined;
    reference_sap_profit_center_id?: number | undefined;
    reference_signing_entity_id?: number | undefined;
    sap_created_at?: string | undefined;
    summary_note?: string | undefined;
    term_end?: string | undefined;
    term_start?: string | undefined;
}>, "many">;
/**
 * Get a list of contracts by contract_id
 */
declare const dataloadContractsBodyMin = 0;
declare const dataloadContractsBodyItem: z.ZodNumber;
declare const dataloadContractsBody: z.ZodArray<z.ZodNumber, "many">;
declare const dataloadContractsResponseDataAccountIdMin = 0;
declare const dataloadContractsResponseDataContractIdMin = 0;
declare const dataloadContractsResponseItem: z.ZodObject<{
    data: z.ZodOptional<z.ZodObject<{
        account_id: z.ZodOptional<z.ZodNumber>;
        contract_id: z.ZodOptional<z.ZodNumber>;
        contract_name: z.ZodOptional<z.ZodString>;
        contract_type: z.ZodOptional<z.ZodEnum<["distribution", "legacy_distribution", "neighbouring_rights"]>>;
        created_at: z.ZodOptional<z.ZodString>;
        created_by: z.ZodOptional<z.ZodString>;
        execution_date: z.ZodOptional<z.ZodString>;
        general_note: z.ZodOptional<z.ZodString>;
        initial_start_date: z.ZodOptional<z.ZodString>;
        is_excluded_from_accounting_run: z.ZodOptional<z.ZodBoolean>;
        last_modified: z.ZodOptional<z.ZodString>;
        last_modified_by: z.ZodOptional<z.ZodString>;
        oa_contract_id: z.ZodOptional<z.ZodNumber>;
        reference_sap_profit_center_id: z.ZodOptional<z.ZodNumber>;
        reference_signing_entity_id: z.ZodOptional<z.ZodNumber>;
        sap_created_at: z.ZodOptional<z.ZodString>;
        summary_note: z.ZodOptional<z.ZodString>;
        term_end: z.ZodOptional<z.ZodString>;
        term_start: z.ZodOptional<z.ZodString>;
    }, "strip", z.ZodTypeAny, {
        contract_id?: number | undefined;
        contract_name?: string | undefined;
        contract_type?: "distribution" | "legacy_distribution" | "neighbouring_rights" | undefined;
        account_id?: number | undefined;
        created_at?: string | undefined;
        created_by?: string | undefined;
        execution_date?: string | undefined;
        general_note?: string | undefined;
        initial_start_date?: string | undefined;
        is_excluded_from_accounting_run?: boolean | undefined;
        last_modified?: string | undefined;
        last_modified_by?: string | undefined;
        oa_contract_id?: number | undefined;
        reference_sap_profit_center_id?: number | undefined;
        reference_signing_entity_id?: number | undefined;
        sap_created_at?: string | undefined;
        summary_note?: string | undefined;
        term_end?: string | undefined;
        term_start?: string | undefined;
    }, {
        contract_id?: number | undefined;
        contract_name?: string | undefined;
        contract_type?: "distribution" | "legacy_distribution" | "neighbouring_rights" | undefined;
        account_id?: number | undefined;
        created_at?: string | undefined;
        created_by?: string | undefined;
        execution_date?: string | undefined;
        general_note?: string | undefined;
        initial_start_date?: string | undefined;
        is_excluded_from_accounting_run?: boolean | undefined;
        last_modified?: string | undefined;
        last_modified_by?: string | undefined;
        oa_contract_id?: number | undefined;
        reference_sap_profit_center_id?: number | undefined;
        reference_signing_entity_id?: number | undefined;
        sap_created_at?: string | undefined;
        summary_note?: string | undefined;
        term_end?: string | undefined;
        term_start?: string | undefined;
    }>>;
}, "strip", z.ZodTypeAny, {
    data?: {
        contract_id?: number | undefined;
        contract_name?: string | undefined;
        contract_type?: "distribution" | "legacy_distribution" | "neighbouring_rights" | undefined;
        account_id?: number | undefined;
        created_at?: string | undefined;
        created_by?: string | undefined;
        execution_date?: string | undefined;
        general_note?: string | undefined;
        initial_start_date?: string | undefined;
        is_excluded_from_accounting_run?: boolean | undefined;
        last_modified?: string | undefined;
        last_modified_by?: string | undefined;
        oa_contract_id?: number | undefined;
        reference_sap_profit_center_id?: number | undefined;
        reference_signing_entity_id?: number | undefined;
        sap_created_at?: string | undefined;
        summary_note?: string | undefined;
        term_end?: string | undefined;
        term_start?: string | undefined;
    } | undefined;
}, {
    data?: {
        contract_id?: number | undefined;
        contract_name?: string | undefined;
        contract_type?: "distribution" | "legacy_distribution" | "neighbouring_rights" | undefined;
        account_id?: number | undefined;
        created_at?: string | undefined;
        created_by?: string | undefined;
        execution_date?: string | undefined;
        general_note?: string | undefined;
        initial_start_date?: string | undefined;
        is_excluded_from_accounting_run?: boolean | undefined;
        last_modified?: string | undefined;
        last_modified_by?: string | undefined;
        oa_contract_id?: number | undefined;
        reference_sap_profit_center_id?: number | undefined;
        reference_signing_entity_id?: number | undefined;
        sap_created_at?: string | undefined;
        summary_note?: string | undefined;
        term_end?: string | undefined;
        term_start?: string | undefined;
    } | undefined;
}>;
declare const dataloadContractsResponse: z.ZodArray<z.ZodObject<{
    data: z.ZodOptional<z.ZodObject<{
        account_id: z.ZodOptional<z.ZodNumber>;
        contract_id: z.ZodOptional<z.ZodNumber>;
        contract_name: z.ZodOptional<z.ZodString>;
        contract_type: z.ZodOptional<z.ZodEnum<["distribution", "legacy_distribution", "neighbouring_rights"]>>;
        created_at: z.ZodOptional<z.ZodString>;
        created_by: z.ZodOptional<z.ZodString>;
        execution_date: z.ZodOptional<z.ZodString>;
        general_note: z.ZodOptional<z.ZodString>;
        initial_start_date: z.ZodOptional<z.ZodString>;
        is_excluded_from_accounting_run: z.ZodOptional<z.ZodBoolean>;
        last_modified: z.ZodOptional<z.ZodString>;
        last_modified_by: z.ZodOptional<z.ZodString>;
        oa_contract_id: z.ZodOptional<z.ZodNumber>;
        reference_sap_profit_center_id: z.ZodOptional<z.ZodNumber>;
        reference_signing_entity_id: z.ZodOptional<z.ZodNumber>;
        sap_created_at: z.ZodOptional<z.ZodString>;
        summary_note: z.ZodOptional<z.ZodString>;
        term_end: z.ZodOptional<z.ZodString>;
        term_start: z.ZodOptional<z.ZodString>;
    }, "strip", z.ZodTypeAny, {
        contract_id?: number | undefined;
        contract_name?: string | undefined;
        contract_type?: "distribution" | "legacy_distribution" | "neighbouring_rights" | undefined;
        account_id?: number | undefined;
        created_at?: string | undefined;
        created_by?: string | undefined;
        execution_date?: string | undefined;
        general_note?: string | undefined;
        initial_start_date?: string | undefined;
        is_excluded_from_accounting_run?: boolean | undefined;
        last_modified?: string | undefined;
        last_modified_by?: string | undefined;
        oa_contract_id?: number | undefined;
        reference_sap_profit_center_id?: number | undefined;
        reference_signing_entity_id?: number | undefined;
        sap_created_at?: string | undefined;
        summary_note?: string | undefined;
        term_end?: string | undefined;
        term_start?: string | undefined;
    }, {
        contract_id?: number | undefined;
        contract_name?: string | undefined;
        contract_type?: "distribution" | "legacy_distribution" | "neighbouring_rights" | undefined;
        account_id?: number | undefined;
        created_at?: string | undefined;
        created_by?: string | undefined;
        execution_date?: string | undefined;
        general_note?: string | undefined;
        initial_start_date?: string | undefined;
        is_excluded_from_accounting_run?: boolean | undefined;
        last_modified?: string | undefined;
        last_modified_by?: string | undefined;
        oa_contract_id?: number | undefined;
        reference_sap_profit_center_id?: number | undefined;
        reference_signing_entity_id?: number | undefined;
        sap_created_at?: string | undefined;
        summary_note?: string | undefined;
        term_end?: string | undefined;
        term_start?: string | undefined;
    }>>;
}, "strip", z.ZodTypeAny, {
    data?: {
        contract_id?: number | undefined;
        contract_name?: string | undefined;
        contract_type?: "distribution" | "legacy_distribution" | "neighbouring_rights" | undefined;
        account_id?: number | undefined;
        created_at?: string | undefined;
        created_by?: string | undefined;
        execution_date?: string | undefined;
        general_note?: string | undefined;
        initial_start_date?: string | undefined;
        is_excluded_from_accounting_run?: boolean | undefined;
        last_modified?: string | undefined;
        last_modified_by?: string | undefined;
        oa_contract_id?: number | undefined;
        reference_sap_profit_center_id?: number | undefined;
        reference_signing_entity_id?: number | undefined;
        sap_created_at?: string | undefined;
        summary_note?: string | undefined;
        term_end?: string | undefined;
        term_start?: string | undefined;
    } | undefined;
}, {
    data?: {
        contract_id?: number | undefined;
        contract_name?: string | undefined;
        contract_type?: "distribution" | "legacy_distribution" | "neighbouring_rights" | undefined;
        account_id?: number | undefined;
        created_at?: string | undefined;
        created_by?: string | undefined;
        execution_date?: string | undefined;
        general_note?: string | undefined;
        initial_start_date?: string | undefined;
        is_excluded_from_accounting_run?: boolean | undefined;
        last_modified?: string | undefined;
        last_modified_by?: string | undefined;
        oa_contract_id?: number | undefined;
        reference_sap_profit_center_id?: number | undefined;
        reference_signing_entity_id?: number | undefined;
        sap_created_at?: string | undefined;
        summary_note?: string | undefined;
        term_end?: string | undefined;
        term_start?: string | undefined;
    } | undefined;
}>, "many">;
/**
 * Check the health of the application.
 */
declare const getHealthHeader: z.ZodObject<{
    "Correlation-Id": z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
    "Correlation-Id"?: string | undefined;
}, {
    "Correlation-Id"?: string | undefined;
}>;
declare const getHealthResponse: z.ZodObject<{
    status: z.ZodEnum<["ok"]>;
}, "strip", z.ZodTypeAny, {
    status: "ok";
}, {
    status: "ok";
}>;
declare const accountId: z.ZodNumber;
declare const contractId: z.ZodNumber;
declare const contractName: z.ZodString;
declare const contractType: z.ZodEnum<["distribution", "legacy_distribution", "neighbouring_rights"]>;
declare const date: z.ZodString;
declare const partialContract: z.ZodObject<{
    account_id: z.ZodOptional<z.ZodNumber>;
    contract_id: z.ZodOptional<z.ZodNumber>;
    contract_name: z.ZodOptional<z.ZodString>;
    contract_type: z.ZodOptional<z.ZodEnum<["distribution", "legacy_distribution", "neighbouring_rights"]>>;
    created_at: z.ZodOptional<z.ZodString>;
    created_by: z.ZodOptional<z.ZodString>;
    execution_date: z.ZodOptional<z.ZodString>;
    general_note: z.ZodOptional<z.ZodString>;
    initial_start_date: z.ZodOptional<z.ZodString>;
    is_excluded_from_accounting_run: z.ZodOptional<z.ZodBoolean>;
    last_modified: z.ZodOptional<z.ZodString>;
    last_modified_by: z.ZodOptional<z.ZodString>;
    oa_contract_id: z.ZodOptional<z.ZodNumber>;
    reference_sap_profit_center_id: z.ZodOptional<z.ZodNumber>;
    reference_signing_entity_id: z.ZodOptional<z.ZodNumber>;
    sap_created_at: z.ZodOptional<z.ZodString>;
    summary_note: z.ZodOptional<z.ZodString>;
    term_end: z.ZodOptional<z.ZodString>;
    term_start: z.ZodOptional<z.ZodString>;
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
    account_id: z.ZodOptional<z.ZodNumber>;
    contract_id: z.ZodOptional<z.ZodNumber>;
    contract_name: z.ZodOptional<z.ZodString>;
    contract_type: z.ZodOptional<z.ZodEnum<["distribution", "legacy_distribution", "neighbouring_rights"]>>;
    created_at: z.ZodOptional<z.ZodString>;
    created_by: z.ZodOptional<z.ZodString>;
    execution_date: z.ZodOptional<z.ZodString>;
    general_note: z.ZodOptional<z.ZodString>;
    initial_start_date: z.ZodOptional<z.ZodString>;
    is_excluded_from_accounting_run: z.ZodOptional<z.ZodBoolean>;
    last_modified: z.ZodOptional<z.ZodString>;
    last_modified_by: z.ZodOptional<z.ZodString>;
    oa_contract_id: z.ZodOptional<z.ZodNumber>;
    reference_sap_profit_center_id: z.ZodOptional<z.ZodNumber>;
    reference_signing_entity_id: z.ZodOptional<z.ZodNumber>;
    sap_created_at: z.ZodOptional<z.ZodString>;
    summary_note: z.ZodOptional<z.ZodString>;
    term_end: z.ZodOptional<z.ZodString>;
    term_start: z.ZodOptional<z.ZodString>;
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
    account_id: z.ZodOptional<z.ZodNumber>;
    contract_id: z.ZodOptional<z.ZodNumber>;
    contract_name: z.ZodOptional<z.ZodString>;
    contract_type: z.ZodOptional<z.ZodEnum<["distribution", "legacy_distribution", "neighbouring_rights"]>>;
    created_at: z.ZodOptional<z.ZodString>;
    created_by: z.ZodOptional<z.ZodString>;
    execution_date: z.ZodOptional<z.ZodString>;
    general_note: z.ZodOptional<z.ZodString>;
    initial_start_date: z.ZodOptional<z.ZodString>;
    is_excluded_from_accounting_run: z.ZodOptional<z.ZodBoolean>;
    last_modified: z.ZodOptional<z.ZodString>;
    last_modified_by: z.ZodOptional<z.ZodString>;
    oa_contract_id: z.ZodOptional<z.ZodNumber>;
    reference_sap_profit_center_id: z.ZodOptional<z.ZodNumber>;
    reference_signing_entity_id: z.ZodOptional<z.ZodNumber>;
    sap_created_at: z.ZodOptional<z.ZodString>;
    summary_note: z.ZodOptional<z.ZodString>;
    term_end: z.ZodOptional<z.ZodString>;
    term_start: z.ZodOptional<z.ZodString>;
}, z.ZodTypeAny, "passthrough">>;
declare const contract: z.ZodObject<{
    account_id: z.ZodOptional<z.ZodNumber>;
    contract_id: z.ZodOptional<z.ZodNumber>;
    contract_name: z.ZodOptional<z.ZodString>;
    contract_type: z.ZodOptional<z.ZodEnum<["distribution", "legacy_distribution", "neighbouring_rights"]>>;
    created_at: z.ZodOptional<z.ZodString>;
    created_by: z.ZodOptional<z.ZodString>;
    execution_date: z.ZodOptional<z.ZodString>;
    general_note: z.ZodOptional<z.ZodString>;
    initial_start_date: z.ZodOptional<z.ZodString>;
    is_excluded_from_accounting_run: z.ZodOptional<z.ZodBoolean>;
    last_modified: z.ZodOptional<z.ZodString>;
    last_modified_by: z.ZodOptional<z.ZodString>;
    oa_contract_id: z.ZodOptional<z.ZodNumber>;
    reference_sap_profit_center_id: z.ZodOptional<z.ZodNumber>;
    reference_signing_entity_id: z.ZodOptional<z.ZodNumber>;
    sap_created_at: z.ZodOptional<z.ZodString>;
    summary_note: z.ZodOptional<z.ZodString>;
    term_end: z.ZodOptional<z.ZodString>;
    term_start: z.ZodOptional<z.ZodString>;
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
    account_id: z.ZodOptional<z.ZodNumber>;
    contract_id: z.ZodOptional<z.ZodNumber>;
    contract_name: z.ZodOptional<z.ZodString>;
    contract_type: z.ZodOptional<z.ZodEnum<["distribution", "legacy_distribution", "neighbouring_rights"]>>;
    created_at: z.ZodOptional<z.ZodString>;
    created_by: z.ZodOptional<z.ZodString>;
    execution_date: z.ZodOptional<z.ZodString>;
    general_note: z.ZodOptional<z.ZodString>;
    initial_start_date: z.ZodOptional<z.ZodString>;
    is_excluded_from_accounting_run: z.ZodOptional<z.ZodBoolean>;
    last_modified: z.ZodOptional<z.ZodString>;
    last_modified_by: z.ZodOptional<z.ZodString>;
    oa_contract_id: z.ZodOptional<z.ZodNumber>;
    reference_sap_profit_center_id: z.ZodOptional<z.ZodNumber>;
    reference_signing_entity_id: z.ZodOptional<z.ZodNumber>;
    sap_created_at: z.ZodOptional<z.ZodString>;
    summary_note: z.ZodOptional<z.ZodString>;
    term_end: z.ZodOptional<z.ZodString>;
    term_start: z.ZodOptional<z.ZodString>;
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
    account_id: z.ZodOptional<z.ZodNumber>;
    contract_id: z.ZodOptional<z.ZodNumber>;
    contract_name: z.ZodOptional<z.ZodString>;
    contract_type: z.ZodOptional<z.ZodEnum<["distribution", "legacy_distribution", "neighbouring_rights"]>>;
    created_at: z.ZodOptional<z.ZodString>;
    created_by: z.ZodOptional<z.ZodString>;
    execution_date: z.ZodOptional<z.ZodString>;
    general_note: z.ZodOptional<z.ZodString>;
    initial_start_date: z.ZodOptional<z.ZodString>;
    is_excluded_from_accounting_run: z.ZodOptional<z.ZodBoolean>;
    last_modified: z.ZodOptional<z.ZodString>;
    last_modified_by: z.ZodOptional<z.ZodString>;
    oa_contract_id: z.ZodOptional<z.ZodNumber>;
    reference_sap_profit_center_id: z.ZodOptional<z.ZodNumber>;
    reference_signing_entity_id: z.ZodOptional<z.ZodNumber>;
    sap_created_at: z.ZodOptional<z.ZodString>;
    summary_note: z.ZodOptional<z.ZodString>;
    term_end: z.ZodOptional<z.ZodString>;
    term_start: z.ZodOptional<z.ZodString>;
}, z.ZodTypeAny, "passthrough">>;
declare const contractLifecycleId: z.ZodNumber;
declare const contractLifecycleScheduleId: z.ZodNumber;
declare const contractLifecycleStatus: z.ZodEnum<["active", "in_collection_period", "inactive", "init", "terminated", "to_be_terminated"]>;
declare const contractLifecycle: z.ZodObject<{
    contract_lifecycle_id: z.ZodOptional<z.ZodNumber>;
    contract_id: z.ZodOptional<z.ZodNumber>;
    contract_lifecycle_schedule_id: z.ZodOptional<z.ZodNumber>;
    lifecycle_status: z.ZodOptional<z.ZodEnum<["active", "in_collection_period", "inactive", "init", "terminated", "to_be_terminated"]>>;
    lifecycle_term_start: z.ZodOptional<z.ZodString>;
    lifecycle_term_end: z.ZodOptional<z.ZodString>;
    renewal_effective: z.ZodOptional<z.ZodString>;
    termination_notice_deadline: z.ZodOptional<z.ZodString>;
    termination_notice_received: z.ZodOptional<z.ZodString>;
    termination_effective: z.ZodOptional<z.ZodString>;
    collection_start: z.ZodOptional<z.ZodString>;
    collection_end: z.ZodOptional<z.ZodString>;
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
    contract_lifecycle_id: z.ZodOptional<z.ZodNumber>;
    contract_id: z.ZodOptional<z.ZodNumber>;
    contract_lifecycle_schedule_id: z.ZodOptional<z.ZodNumber>;
    lifecycle_status: z.ZodOptional<z.ZodEnum<["active", "in_collection_period", "inactive", "init", "terminated", "to_be_terminated"]>>;
    lifecycle_term_start: z.ZodOptional<z.ZodString>;
    lifecycle_term_end: z.ZodOptional<z.ZodString>;
    renewal_effective: z.ZodOptional<z.ZodString>;
    termination_notice_deadline: z.ZodOptional<z.ZodString>;
    termination_notice_received: z.ZodOptional<z.ZodString>;
    termination_effective: z.ZodOptional<z.ZodString>;
    collection_start: z.ZodOptional<z.ZodString>;
    collection_end: z.ZodOptional<z.ZodString>;
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
    contract_lifecycle_id: z.ZodOptional<z.ZodNumber>;
    contract_id: z.ZodOptional<z.ZodNumber>;
    contract_lifecycle_schedule_id: z.ZodOptional<z.ZodNumber>;
    lifecycle_status: z.ZodOptional<z.ZodEnum<["active", "in_collection_period", "inactive", "init", "terminated", "to_be_terminated"]>>;
    lifecycle_term_start: z.ZodOptional<z.ZodString>;
    lifecycle_term_end: z.ZodOptional<z.ZodString>;
    renewal_effective: z.ZodOptional<z.ZodString>;
    termination_notice_deadline: z.ZodOptional<z.ZodString>;
    termination_notice_received: z.ZodOptional<z.ZodString>;
    termination_effective: z.ZodOptional<z.ZodString>;
    collection_start: z.ZodOptional<z.ZodString>;
    collection_end: z.ZodOptional<z.ZodString>;
}, z.ZodTypeAny, "passthrough">>;
declare const contractTerminationEffective: z.ZodString;
declare const contractTerminationNoticeReceived: z.ZodString;
declare const health: z.ZodObject<{
    status: z.ZodLiteral<"ok">;
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
    status: z.ZodLiteral<"ok">;
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
    status: z.ZodLiteral<"ok">;
}, z.ZodTypeAny, "passthrough">>;
declare const dateTime: z.ZodString;

export { accountId, contract, contractId, contractLifecycle, contractLifecycleId, contractLifecycleScheduleId, contractLifecycleStatus, contractName, contractTerminationEffective, contractTerminationNoticeReceived, contractType, dataloadContractsBody, dataloadContractsBodyItem, dataloadContractsBodyMin, dataloadContractsResponse, dataloadContractsResponseDataAccountIdMin, dataloadContractsResponseDataContractIdMin, dataloadContractsResponseItem, date, dateTime, getContractHeader, getContractLifecycleParams, getContractLifecyclePathContractIdMin, getContractLifecycleResponse, getContractLifecycleResponseContractIdMin, getContractLifecycleResponseContractLifecycleIdMin, getContractLifecycleResponseContractLifecycleScheduleIdMin, getContractParams, getContractPathContractIdMin, getContractResponse, getContractResponseAccountIdMin, getContractResponseContractIdMin, getContractsBody, getContractsBodyItem, getContractsBodyMin, getContractsResponse, getContractsResponseAccountIdMin, getContractsResponseContractIdMin, getContractsResponseItem, getHealthHeader, getHealthResponse, health, partialContract, reactivateContractHeader, reactivateContractParams, reactivateContractPathContractIdMin, reactivateContractResponse, reactivateContractResponseAccountIdMin, reactivateContractResponseContractIdMin, terminateContractBody, terminateContractHeader, terminateContractParams, terminateContractPathContractIdMin, terminateContractResponse, terminateContractResponseAccountIdMin, terminateContractResponseContractIdMin, updateContractBody, updateContractHeader, updateContractParams, updateContractPathContractIdMin, updateContractResponse, updateContractResponseAccountIdMin, updateContractResponseContractIdMin };
