44 lines
1.2 KiB
C
44 lines
1.2 KiB
C
/*
|
|
* v1_token_request_spec.h
|
|
*
|
|
* TokenRequestSpec contains client provided parameters of a token request.
|
|
*/
|
|
|
|
#ifndef _v1_token_request_spec_H_
|
|
#define _v1_token_request_spec_H_
|
|
|
|
#include <string.h>
|
|
#include "../external/cJSON.h"
|
|
#include "../include/list.h"
|
|
#include "../include/keyValuePair.h"
|
|
#include "../include/binary.h"
|
|
|
|
typedef struct v1_token_request_spec_t v1_token_request_spec_t;
|
|
|
|
#include "v1_bound_object_reference.h"
|
|
|
|
|
|
|
|
typedef struct v1_token_request_spec_t {
|
|
list_t *audiences; //primitive container
|
|
struct v1_bound_object_reference_t *bound_object_ref; //model
|
|
long expiration_seconds; //numeric
|
|
|
|
int _library_owned; // Is the library responsible for freeing this object?
|
|
} v1_token_request_spec_t;
|
|
|
|
__attribute__((deprecated)) v1_token_request_spec_t *v1_token_request_spec_create(
|
|
list_t *audiences,
|
|
v1_bound_object_reference_t *bound_object_ref,
|
|
long expiration_seconds
|
|
);
|
|
|
|
void v1_token_request_spec_free(v1_token_request_spec_t *v1_token_request_spec);
|
|
|
|
v1_token_request_spec_t *v1_token_request_spec_parseFromJSON(cJSON *v1_token_request_specJSON);
|
|
|
|
cJSON *v1_token_request_spec_convertToJSON(v1_token_request_spec_t *v1_token_request_spec);
|
|
|
|
#endif /* _v1_token_request_spec_H_ */
|
|
|