Google Apps Script API
    Preparing search index...
    interface ProductsCollection {
        custombatch(
            resource: ProductsCustomBatchRequest,
        ): ProductsCustomBatchResponse;
        custombatch(
            resource: ProductsCustomBatchRequest,
            optionalArgs: object,
        ): ProductsCustomBatchResponse;
        get(merchantId: string, productId: string): Product;
        insert(resource: Product, merchantId: string): Product;
        insert(
            resource: Product,
            merchantId: string,
            optionalArgs: object,
        ): Product;
        list(merchantId: string): ProductsListResponse;
        list(merchantId: string, optionalArgs: object): ProductsListResponse;
        remove(merchantId: string, productId: string): void;
        remove(merchantId: string, productId: string, optionalArgs: object): void;
    }
    Index

    Methods