// This file was autogenerated. Please do not change. // All changes will be overwrited on commit. export default class SafesearchApi { static async safesearchDisable(): Promise { return await fetch(`/control/safesearch/disable`, { method: 'POST', }).then(async (res) => { if (res.status === 200) { return res.status; } else { return new Error(String(res.status)); } }) } static async safesearchEnable(): Promise { return await fetch(`/control/safesearch/enable`, { method: 'POST', }).then(async (res) => { if (res.status === 200) { return res.status; } else { return new Error(String(res.status)); } }) } static async safesearchStatus(): Promise { return await fetch(`/control/safesearch/status`, { method: 'GET', }).then(async (res) => { if (res.status === 200) { return res.json(); } else { return new Error(String(res.status)); } }) } }