import { APIResource } from "../../resource.js"; import * as Core from "../../core.js"; export declare class OrganizationProfileResource extends APIResource { /** * Modify organization profile. (Currently in Public Beta - see * https://developers.cloudflare.com/fundamentals/organizations/) */ update(organizationId: string, body: OrganizationProfileUpdateParams, options?: Core.RequestOptions): Core.APIPromise; /** * Get an organizations profile if it exists. (Currently in Public Beta - see * https://developers.cloudflare.com/fundamentals/organizations/) */ get(organizationId: string, options?: Core.RequestOptions): Core.APIPromise; } export interface OrganizationProfile { business_address: string; business_email: string; business_name: string; business_phone: string; external_metadata: string; } export interface OrganizationProfileUpdateParams { business_address: string; business_email: string; business_name: string; business_phone: string; external_metadata: string; } export declare namespace OrganizationProfileResource { export { type OrganizationProfile as OrganizationProfile, type OrganizationProfileUpdateParams as OrganizationProfileUpdateParams, }; } //# sourceMappingURL=organization-profile.d.ts.map