/** * @example * { * additional_info: "A developer-friendly, compliant API for SMS, MMS, and RCS, built to scale real conversations.", * name: "Pinnacle", * options: { * forceReload: true * }, * website: "https://www.pinnacle.sh" * } */ export interface AutofillBrandParams { /** Any extra details about the brand to help improve data accuracy. */ additional_info?: string; /** Name of the brand. */ name?: string; options?: AutofillBrandParams.Options; /** Brand's website URL. */ website?: string; } export declare namespace AutofillBrandParams { interface Options { /** Set to true to bypass cached data and fetch fresh information. */ forceReload?: boolean; } }