mirror of
https://github.com/clearml/clearml-web
synced 2025-06-26 18:27:02 +00:00
25 lines
520 B
TypeScript
25 lines
520 B
TypeScript
/**
|
|
* projects
|
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
*
|
|
* OpenAPI spec version: 2.12
|
|
*
|
|
*
|
|
* NOTE: This class is auto generated by the swagger code generator program.
|
|
* https://github.com/swagger-api/swagger-codegen.git
|
|
* Do not edit the class manually.
|
|
*/
|
|
|
|
|
|
|
|
export interface MultiFieldPatternData {
|
|
/**
|
|
* Pattern string (regex)
|
|
*/
|
|
pattern?: string;
|
|
/**
|
|
* List of field names
|
|
*/
|
|
fields?: Array<string>;
|
|
}
|