import FavoriteCollection from "../definitions/FavoriteCollection"; import PathSegment from "../PathSegment"; export default class Favorite extends PathSegment { constructor(prv: PathSegment, id?: string, service?: any); /** * */ get(): Promise; /** * * return {ApiResponse} */ getRaw(): Promise; /** * */ put(body: FavoriteCollection): Promise; /** * * return {ApiResponse} */ putRaw(body: FavoriteCollection): Promise; }