| 12345678910111213141516171819202122232425262728293031323334353637383940 | /* response_generic.proto/Open GoPro, Version 2.0 (C) Copyright 2021 GoPro, Inc. (http://gopro.com/OpenGoPro). *//* This copyright was auto-generated on Wed Sep 11 20:31:30 UTC 2024 *//*********************************************************************************************************************** * * This file is automatically generated!!! Do not modify manually. * **********************************************************************************************************************//** * Defines the structure of protobuf message containing generic response to a command */syntax = "proto2";package open_gopro;enum EnumResultGeneric {    RESULT_UNKNOWN                = 0;    RESULT_SUCCESS                = 1;    RESULT_ILL_FORMED             = 2;    RESULT_NOT_SUPPORTED          = 3;    RESULT_ARGUMENT_OUT_OF_BOUNDS = 4;    RESULT_ARGUMENT_INVALID       = 5;    RESULT_RESOURCE_NOT_AVAILABLE = 6;}/* * Generic Response used across many response / notification messages */message ResponseGeneric {    required EnumResultGeneric result = 1; // Generic pass/fail/error info}/** * A common model to represent a media file */message Media {    optional string folder = 1; // Directory in which the media is contained    optional string file   = 2; // Filename of media}
 |