13 lines
322 B
TypeScript
13 lines
322 B
TypeScript
export interface ApplicationPatch {
|
|
metadata?: {
|
|
[key: string]: string;
|
|
};
|
|
name?: string;
|
|
rateLimit?: number | null;
|
|
uid?: string | null;
|
|
}
|
|
export declare const ApplicationPatchSerializer: {
|
|
_fromJsonObject(object: any): ApplicationPatch;
|
|
_toJsonObject(self: ApplicationPatch): any;
|
|
};
|