Member Junction
    Preparing search index...

    Interface for a Customer from Business Central

    interface BCCustomer {
        address: BCAddress;
        balance: number;
        blocked: string;
        city: string;
        country: string;
        currencyCode: string;
        displayName: string;
        email: string;
        id: string;
        lastModifiedDateTime: Date;
        number: string;
        overdueAmount: number;
        paymentMethodId?: string;
        paymentTermsId?: string;
        phoneNumber: string;
        postalCode: string;
        state: string;
        taxAreaId?: string;
        taxLiable: boolean;
        totalSalesExcludingTax: number;
        type: string;
    }
    Index

    Properties

    address: BCAddress
    balance: number
    blocked: string
    city: string
    country: string
    currencyCode: string
    displayName: string
    email: string
    id: string
    lastModifiedDateTime: Date
    number: string
    overdueAmount: number
    paymentMethodId?: string
    paymentTermsId?: string
    phoneNumber: string
    postalCode: string
    state: string
    taxAreaId?: string
    taxLiable: boolean
    totalSalesExcludingTax: number
    type: string