/** * A request type for creating a user secret */ export interface SdPlatformRequestUserSecretCreate { /** The key for the user secret */ key: string; /** The value for the user secret */ value: string; } /** * A request type for patching a user secret */ export interface SdPlatformRequestUserSecretPatch { /** The key for the user secret (optional) */ key?: string; /** The value for the user secret (optional) */ value?: string; } //# sourceMappingURL=SdPlatformRequestUserSecrets.d.ts.map