/** * Solidex.Company, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null * 1.0 * undefined */ import { HttpClient } from '@angular/common/http'; import { Observable } from 'rxjs'; import * as __model from '../model'; import * as i0 from "@angular/core"; export interface GetByShortcutParams { shortcut: string; /** * The requested API version * default: 1.0 */ apiVersion?: string; } export interface PatchParams { shortcut: string; /** * The requested API version * default: 1.0 */ apiVersion?: string; model: __model.Operation[]; } export declare class SocialService { private http; constructor(http: HttpClient); /** * Get company social by shortcut * http://undefined/swagger/swagger-ui.html#!/Social/GetByShortcut */ GetByShortcut(params: GetByShortcutParams): Observable<__model.GetSocialByShortcutResponse>; /** * Patch company social * http://undefined/swagger/swagger-ui.html#!/Social/Patch */ Patch(params: PatchParams): Observable<__model.PatchSocialResponse>; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }