syntax = "proto3";

package devvit.dev_portal.bot_registration;

import "google/protobuf/timestamp.proto";

option go_package = "github.snooguts.net/reddit/reddit-devplatform-monorepo/go-common/generated/protos/types/devvit/dev_portal/bot_registration";

message AgreeToBountyRequest {
  // The ID of the bot registration that's agreeing to the bounty terms
  int32 id = 1;
}

message AgreeToBountyResponse {
  // The ID of the bot registration that agreed to the bounty terms
  int32 id = 1;
  // The timestamp of when it agreed (i.e., just now)
  google.protobuf.Timestamp agreed_to_bounty_at = 4;
}
