// Copyright © 2023-2026 Cognizant Technology Solutions Corp, www.cognizant.com. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. // // END COPYRIGHT // To obtain information concerning the code generation that is used by this Interface Definition Language // please see the following: // // Go - https://developers.google.com/protocol-buffers/docs/reference/go-generated // Python - https://developers.google.com/protocol-buffers/docs/reference/python-generated // syntax = "proto3"; package dev.cognizant_ai.neuro_san.api.grpc.mime_data; option go_package = "github.com/cognizant-ai-lab/neuro_san/internal/gen/dev.cognizant_ai/neuro_san/api/grpc/mime_data/v1;mime_data"; // A Message identifying image data message MimeData { // MIME type of the image data string mime_type = 1 [json_name="mime_type"]; // Raw bytes of the image bytes mime_bytes = 2 [json_name="mime_bytes"]; }