/** * A secret for an organization */ export interface SdPlatformRequestOrganizationSecretCreate { /** The key for the organization secret */ key: string; /** The value for the organization secret */ value: string; } /** * A request type for patching an organization secret */ export interface SdPlatformRequestOrganizationSecretPatch { /** The key for the organization secret (optional) */ key?: string; /** The value for the organization secret (optional) */ value?: string; } //# sourceMappingURL=SdPlatformRequestOrganizationSecrets.d.ts.map