41 lines
874 B
Swift
41 lines
874 B
Swift
//
|
|
// Constants.swift
|
|
// OTRS-Watch
|
|
//
|
|
// Created by Gerrit Linnemann on 06.12.16.
|
|
// Copyright © 2016 Adawim UG (haftungsbeschränkt). All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
struct Constants {
|
|
|
|
struct SERVICE {
|
|
static let URL = "http://saeweb01.sae.intra/web/ws/v1/user/permission/"
|
|
}
|
|
|
|
struct USER_SETTINGS {
|
|
|
|
struct CREDENTIALS {
|
|
static let USER = "user::setting::login"
|
|
static let PASSWORD = "user::setting::password"
|
|
}
|
|
|
|
struct OTRS {
|
|
static let QUEUE = "user::setting::otrs::queue"
|
|
}
|
|
}
|
|
|
|
struct NOTIFICATION {
|
|
|
|
struct TICKET {
|
|
|
|
struct LIST {
|
|
static let UPDATED = "nf::ticket::list::updated"
|
|
}
|
|
|
|
static let IN = "nf::ticket::in"
|
|
}
|
|
}
|
|
}
|