src/lib/open-api.meta-data.ts
BaseRemoteMethodMetadata
Properties |
|
id |
id:
|
Type : string
|
operation |
operation:
|
Type : OperationObjectWithMetadata | string
|
Optional |
The operation object with path and method |
serverId |
serverId:
|
Type : string
|
Optional |
used to specify the target server for the reset api operation |
serverIndex |
serverIndex:
|
Type : number
|
Optional |
The index of the server object in the servers array in the open api config |
import { OperationObjectWithMetadata } from './open-api';
import { BaseRemoteMethodMetadata } from '@rxap/remote-method';
export interface OpenApiMetaData extends BaseRemoteMethodMetadata {
/**
* The operation object with path and method
*/
operation?: OperationObjectWithMetadata | string;
/**
* The index of the server object in the servers array in the open api config
*/
serverIndex?: number;
/**
* used to specify the target server for the reset api operation
*/
serverId?: string;
id: string;
}