blob: 1cc295bf9d5e0752ac6716f274aba13cf4a06b7d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*-
(declaim (optimize (speed 0) (safety 3) (debug 3)))
(in-package :snow)
(defclass awx ()
((username :initarg :username
:initform nil
:accessor username)
(password :initarg :password
:initform nil
:accessor password)
(client-id :initarg :client-id
:initform nil
:accessor client-id)
(secret-key :initarg :secret-key
:initform nil
:accessor secret-key)
(baseurl :initarg :baseurl
:initform nil
:accessor baseurl)
(token :initarg :token
:initform nil
:accessor token)
(scope :initarg :scope
:initform "read"
:accessor scope))
(:documentation ""))
|