# Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
"""Client and server classes corresponding to protobuf-defined services."""
import grpc

import bots_pb2 as bots__pb2


class BotsServiceStub(object):
    """Missing associated documentation comment in .proto file."""

    def __init__(self, channel):
        """Constructor.

        Args:
            channel: A grpc.Channel.
        """
        self.Get = channel.unary_unary(
                '/bots.BotsService/Get',
                request_serializer=bots__pb2.IdMessage.SerializeToString,
                response_deserializer=bots__pb2.BotResponse.FromString,
                )
        self.GetList = channel.unary_unary(
                '/bots.BotsService/GetList',
                request_serializer=bots__pb2.IdList.SerializeToString,
                response_deserializer=bots__pb2.BotList.FromString,
                )
        self.Update = channel.unary_unary(
                '/bots.BotsService/Update',
                request_serializer=bots__pb2.BotRequest.SerializeToString,
                response_deserializer=bots__pb2.NullResponse.FromString,
                )
        self.Create = channel.unary_unary(
                '/bots.BotsService/Create',
                request_serializer=bots__pb2.BotRequest.SerializeToString,
                response_deserializer=bots__pb2.IdMessage.FromString,
                )
        self.Delete = channel.unary_unary(
                '/bots.BotsService/Delete',
                request_serializer=bots__pb2.IdMessage.SerializeToString,
                response_deserializer=bots__pb2.NullResponse.FromString,
                )
        self.List = channel.unary_unary(
                '/bots.BotsService/List',
                request_serializer=bots__pb2.ListRequest.SerializeToString,
                response_deserializer=bots__pb2.BotList.FromString,
                )


class BotsServiceServicer(object):
    """Missing associated documentation comment in .proto file."""

    def Get(self, request, context):
        """Missing associated documentation comment in .proto file."""
        context.set_code(grpc.StatusCode.UNIMPLEMENTED)
        context.set_details('Method not implemented!')
        raise NotImplementedError('Method not implemented!')

    def GetList(self, request, context):
        """Missing associated documentation comment in .proto file."""
        context.set_code(grpc.StatusCode.UNIMPLEMENTED)
        context.set_details('Method not implemented!')
        raise NotImplementedError('Method not implemented!')

    def Update(self, request, context):
        """Missing associated documentation comment in .proto file."""
        context.set_code(grpc.StatusCode.UNIMPLEMENTED)
        context.set_details('Method not implemented!')
        raise NotImplementedError('Method not implemented!')

    def Create(self, request, context):
        """Missing associated documentation comment in .proto file."""
        context.set_code(grpc.StatusCode.UNIMPLEMENTED)
        context.set_details('Method not implemented!')
        raise NotImplementedError('Method not implemented!')

    def Delete(self, request, context):
        """Missing associated documentation comment in .proto file."""
        context.set_code(grpc.StatusCode.UNIMPLEMENTED)
        context.set_details('Method not implemented!')
        raise NotImplementedError('Method not implemented!')

    def List(self, request, context):
        """Missing associated documentation comment in .proto file."""
        context.set_code(grpc.StatusCode.UNIMPLEMENTED)
        context.set_details('Method not implemented!')
        raise NotImplementedError('Method not implemented!')


def add_BotsServiceServicer_to_server(servicer, server):
    rpc_method_handlers = {
            'Get': grpc.unary_unary_rpc_method_handler(
                    servicer.Get,
                    request_deserializer=bots__pb2.IdMessage.FromString,
                    response_serializer=bots__pb2.BotResponse.SerializeToString,
            ),
            'GetList': grpc.unary_unary_rpc_method_handler(
                    servicer.GetList,
                    request_deserializer=bots__pb2.IdList.FromString,
                    response_serializer=bots__pb2.BotList.SerializeToString,
            ),
            'Update': grpc.unary_unary_rpc_method_handler(
                    servicer.Update,
                    request_deserializer=bots__pb2.BotRequest.FromString,
                    response_serializer=bots__pb2.NullResponse.SerializeToString,
            ),
            'Create': grpc.unary_unary_rpc_method_handler(
                    servicer.Create,
                    request_deserializer=bots__pb2.BotRequest.FromString,
                    response_serializer=bots__pb2.IdMessage.SerializeToString,
            ),
            'Delete': grpc.unary_unary_rpc_method_handler(
                    servicer.Delete,
                    request_deserializer=bots__pb2.IdMessage.FromString,
                    response_serializer=bots__pb2.NullResponse.SerializeToString,
            ),
            'List': grpc.unary_unary_rpc_method_handler(
                    servicer.List,
                    request_deserializer=bots__pb2.ListRequest.FromString,
                    response_serializer=bots__pb2.BotList.SerializeToString,
            ),
    }
    generic_handler = grpc.method_handlers_generic_handler(
            'bots.BotsService', rpc_method_handlers)
    server.add_generic_rpc_handlers((generic_handler,))


 # This class is part of an EXPERIMENTAL API.
class BotsService(object):
    """Missing associated documentation comment in .proto file."""

    @staticmethod
    def Get(request,
            target,
            options=(),
            channel_credentials=None,
            call_credentials=None,
            insecure=False,
            compression=None,
            wait_for_ready=None,
            timeout=None,
            metadata=None):
        return grpc.experimental.unary_unary(request, target, '/bots.BotsService/Get',
            bots__pb2.IdMessage.SerializeToString,
            bots__pb2.BotResponse.FromString,
            options, channel_credentials,
            insecure, call_credentials, compression, wait_for_ready, timeout, metadata)

    @staticmethod
    def GetList(request,
            target,
            options=(),
            channel_credentials=None,
            call_credentials=None,
            insecure=False,
            compression=None,
            wait_for_ready=None,
            timeout=None,
            metadata=None):
        return grpc.experimental.unary_unary(request, target, '/bots.BotsService/GetList',
            bots__pb2.IdList.SerializeToString,
            bots__pb2.BotList.FromString,
            options, channel_credentials,
            insecure, call_credentials, compression, wait_for_ready, timeout, metadata)

    @staticmethod
    def Update(request,
            target,
            options=(),
            channel_credentials=None,
            call_credentials=None,
            insecure=False,
            compression=None,
            wait_for_ready=None,
            timeout=None,
            metadata=None):
        return grpc.experimental.unary_unary(request, target, '/bots.BotsService/Update',
            bots__pb2.BotRequest.SerializeToString,
            bots__pb2.NullResponse.FromString,
            options, channel_credentials,
            insecure, call_credentials, compression, wait_for_ready, timeout, metadata)

    @staticmethod
    def Create(request,
            target,
            options=(),
            channel_credentials=None,
            call_credentials=None,
            insecure=False,
            compression=None,
            wait_for_ready=None,
            timeout=None,
            metadata=None):
        return grpc.experimental.unary_unary(request, target, '/bots.BotsService/Create',
            bots__pb2.BotRequest.SerializeToString,
            bots__pb2.IdMessage.FromString,
            options, channel_credentials,
            insecure, call_credentials, compression, wait_for_ready, timeout, metadata)

    @staticmethod
    def Delete(request,
            target,
            options=(),
            channel_credentials=None,
            call_credentials=None,
            insecure=False,
            compression=None,
            wait_for_ready=None,
            timeout=None,
            metadata=None):
        return grpc.experimental.unary_unary(request, target, '/bots.BotsService/Delete',
            bots__pb2.IdMessage.SerializeToString,
            bots__pb2.NullResponse.FromString,
            options, channel_credentials,
            insecure, call_credentials, compression, wait_for_ready, timeout, metadata)

    @staticmethod
    def List(request,
            target,
            options=(),
            channel_credentials=None,
            call_credentials=None,
            insecure=False,
            compression=None,
            wait_for_ready=None,
            timeout=None,
            metadata=None):
        return grpc.experimental.unary_unary(request, target, '/bots.BotsService/List',
            bots__pb2.ListRequest.SerializeToString,
            bots__pb2.BotList.FromString,
            options, channel_credentials,
            insecure, call_credentials, compression, wait_for_ready, timeout, metadata)