namespace Penumbra.Api.Api;
/// API methods pertaining to current metadata manipulations.
public interface IPenumbraApiMeta
{
/// A base64 encoded, zipped json-string with a prepended version-byte of the current manipulations
/// in the collection currently associated with the player.
public string GetPlayerMetaManipulations();
/// A base64 encoded, zipped json-string with a prepended version-byte of the current manipulations
/// in the given collection applying to the given game object or the default collection if it does not exist.
public string GetMetaManipulations(int gameObjectIdx);
}