blob: dbd3eb199bd99bbb10555fafb59790494dd8d690 [file] [log] [blame]
Joey Armstrong25589d82024-01-02 22:31:35 -05001// Copyright 2018-2024 Open Networking Foundation (ONF) and the ONF Contributors
yasin sapli2bbfbb42021-11-01 14:30:10 +00002//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at:
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15syntax = "proto3";
16
17option go_package = "github.com/opencord/voltha-protos/v5/go/voip_user_profile";
18option java_package = "org.opencord.voltha.voip_user_profile";
19
20package voip_user_profile;
21import "google/api/annotations.proto";
22
23// A user specific profile for voip service
24message VoipUserProfileRequest {
25 // for the path in KV store
26 string key = 1;
27 VoipUserProfile voipUserProfile = 2;
28}
29
30message VoipUserProfile {
31 string voipSystemProfileKey = 1;
32 string username = 2;
33 string password = 3;
34 string domain = 4;
35 string proxy = 5;
36 uint32 port = 6;
37 string sipDisplayName = 7;
38 string realm = 8;
39}