Google Apps Script API
    Preparing search index...
    interface PosCollection {
        custombatch(resource: PosCustomBatchRequest): PosCustomBatchResponse;
        custombatch(
            resource: PosCustomBatchRequest,
            optionalArgs: object,
        ): PosCustomBatchResponse;
        get(
            merchantId: string,
            targetMerchantId: string,
            storeCode: string,
        ): PosStore;
        insert(
            resource: PosStore,
            merchantId: string,
            targetMerchantId: string,
        ): PosStore;
        insert(
            resource: PosStore,
            merchantId: string,
            targetMerchantId: string,
            optionalArgs: object,
        ): PosStore;
        inventory(
            resource: PosInventoryRequest,
            merchantId: string,
            targetMerchantId: string,
        ): PosInventoryResponse;
        inventory(
            resource: PosInventoryRequest,
            merchantId: string,
            targetMerchantId: string,
            optionalArgs: object,
        ): PosInventoryResponse;
        list(merchantId: string, targetMerchantId: string): PosListResponse;
        remove(
            merchantId: string,
            targetMerchantId: string,
            storeCode: string,
        ): void;
        remove(
            merchantId: string,
            targetMerchantId: string,
            storeCode: string,
            optionalArgs: object,
        ): void;
        sale(
            resource: PosSaleRequest,
            merchantId: string,
            targetMerchantId: string,
        ): PosSaleResponse;
        sale(
            resource: PosSaleRequest,
            merchantId: string,
            targetMerchantId: string,
            optionalArgs: object,
        ): PosSaleResponse;
    }
    Index

    Methods