blob: 0d9026d4d2d9ab97bbe5da4803cd2fc4c855b85e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
syntax = "proto3";
package yandex.cloud.datasphere.v2;
option go_package = "github.com/yandex-cloud/go-genproto/yandex/cloud/datasphere/v2;datasphere";
option java_package = "yandex.cloud.api.datasphere.v2";
message User {
// ID of the user.
string id = 1;
// Name of the user.
string name = 2;
// Email of the user.
string email = 3;
// URL to the user's profile picture.
string picture = 4;
// An image content of the user's profile picture.
string picture_data = 5;
}
|