]> git.basschouten.com Git - openhab-addons.git/blob
faee2f0e521555190870aba7bffaa1d771a69d65
[openhab-addons.git] /
1 /**
2  * Copyright (c) 2010-2022 Contributors to the openHAB project
3  *
4  * See the NOTICE file(s) distributed with this work for additional
5  * information.
6  *
7  * This program and the accompanying materials are made available under the
8  * terms of the Eclipse Public License 2.0 which is available at
9  * http://www.eclipse.org/legal/epl-2.0
10  *
11  * SPDX-License-Identifier: EPL-2.0
12  */
13 package org.openhab.binding.mybmw.internal.dto.auth;
14
15 import java.util.List;
16
17 /**
18  * The {@link AuthQueryResponse} Data Transfer Object
19  *
20  * @author Bernd Weymann - Initial contribution
21  */
22 public class AuthQueryResponse {
23     public String clientName;// ": "mybmwapp",
24     public String clientSecret;// ": "c0e3393d-70a2-4f6f-9d3c-8530af64d552",
25     public String clientId;// ": "31c357a0-7a1d-4590-aa99-33b97244d048",
26     public String gcdmBaseUrl;// ": "https://customer.bmwgroup.com",
27     public String returnUrl;// ": "com.bmw.connected://oauth",
28     public String brand;// ": "bmw",
29     public String language;// ": "en",
30     public String country;// ": "US",
31     public String authorizationEndpoint;// ": "https://customer.bmwgroup.com/oneid/login",
32     public String tokenEndpoint;// ": "https://customer.bmwgroup.com/gcdm/oauth/token",
33     public List<String> scopes;// ;": [
34     // "openid",
35     // "profile",
36     // "email",
37     // "offline_access",
38     // "smacc",
39     // "vehicle_data",
40     // "perseus",
41     // "dlm",
42     // "svds",
43     // "cesim",
44     // "vsapi",
45     // "remote_services",
46     // "fupo",
47     // "authenticate_user"
48     // ],
49     public List<String> promptValues; // ": ["login"]
50 }