Path: blob/trunk/javascript/grid-ui/src/models/session-info.ts
2884 views
/*1* Licensed to the Software Freedom Conservancy (SFC) under one2* or more contributor license agreements. See the NOTICE file3* distributed with this work for additional information4* regarding copyright ownership. The SFC licenses this file5* to you under the Apache License, Version 2.0 (the6* "License"); you may not use this file except in compliance7* with the License. You may obtain a copy of the License at8*9* http://www.apache.org/licenses/LICENSE-2.010*11* Unless required by applicable law or agreed to in writing,12* software distributed under the License is distributed on an13* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY14* KIND, either express or implied. See the License for the15* specific language governing permissions and limitations16* under the License.17*/1819import SlotInfo from './slot-info'2021interface SessionInfo {22id: string23capabilities: string24startTime: string25uri: string26nodeId: string27nodeUri: string28sessionDurationMillis: string29slot: SlotInfo30}3132export default SessionInfo333435