cloudflare
Version:
The official TypeScript library for the Cloudflare API
22 lines • 805 B
JavaScript
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
import { APIResource } from "../../resource.mjs";
export class LogoMatches extends APIResource {
/**
* Return matches as CSV for logo queries based on ID
*/
download(params, options) {
const { account_id, ...query } = params;
return this._client.get(`/accounts/${account_id}/brand-protection/logo-matches/download`, {
query,
...options,
});
}
/**
* Return matches for logo queries based on ID
*/
get(params, options) {
const { account_id, ...query } = params;
return this._client.get(`/accounts/${account_id}/brand-protection/logo-matches`, { query, ...options });
}
}
//# sourceMappingURL=logo-matches.mjs.map