yasin sapli | 2bbfbb4 | 2021-11-01 14:30:10 +0000 | [diff] [blame] | 1 | // Copyright (c) 2018 Open Networking Foundation |
| 2 | // |
| 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 | |
| 15 | syntax = "proto3"; |
| 16 | |
| 17 | option go_package = "github.com/opencord/voltha-protos/v5/go/voip_user_profile"; |
| 18 | option java_package = "org.opencord.voltha.voip_user_profile"; |
| 19 | |
| 20 | package voip_user_profile; |
| 21 | import "google/api/annotations.proto"; |
| 22 | |
| 23 | // A user specific profile for voip service |
| 24 | message VoipUserProfileRequest { |
| 25 | // for the path in KV store |
| 26 | string key = 1; |
| 27 | VoipUserProfile voipUserProfile = 2; |
| 28 | } |
| 29 | |
| 30 | message 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 | } |