/*
* Service Collaborateur API
*
* Api du service Collaborateur, utilisée pour récupérer les données des collaborateurs d'Apside
*
* OpenAPI spec version: 1.1.2
* Contact: lilian.gayet@apside-groupe.com
* Generated by: https://github.com/swagger-api/swagger-codegen.git
*/
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using RestSharp;
namespace IO.Swagger.ClientCollaborateur
{
///
/// Represents configuration aspects required to interact with the API endpoints.
///
public interface IApiAccessor
{
///
/// Gets or sets the configuration object
///
/// An instance of the Configuration
Configuration Configuration {get; set;}
///
/// Gets the base path of the API client.
///
/// The base path
String GetBasePath();
///
/// Provides a factory method hook for the creation of exceptions.
///
ExceptionFactory ExceptionFactory { get; set; }
}
}