-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Bassam Riman <[email protected]>
- Loading branch information
1 parent
a002269
commit 9509320
Showing
5 changed files
with
113 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
34 changes: 34 additions & 0 deletions
34
.../client/kotlin/src/main/kotlin/org/hyperledger/identus/client/models/DateTimeParameter.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
/** | ||
* | ||
* Please note: | ||
* This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
* Do not edit this file manually. | ||
* | ||
*/ | ||
|
||
@file:Suppress( | ||
"ArrayInDataClass", | ||
"EnumEntryName", | ||
"RemoveRedundantQualifierName", | ||
"UnusedImport" | ||
) | ||
|
||
package org.hyperledger.identus.client.models | ||
|
||
|
||
import com.google.gson.annotations.SerializedName | ||
|
||
/** | ||
* | ||
* | ||
* @param dateTime | ||
*/ | ||
|
||
|
||
data class DateTimeParameter : VcVerificationParameter(dateTime, null) ( | ||
|
||
@SerializedName("dateTime") | ||
val dateTime: java.time.OffsetDateTime | ||
|
||
) | ||
|
34 changes: 34 additions & 0 deletions
34
...agent/client/kotlin/src/main/kotlin/org/hyperledger/identus/client/models/DidParameter.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
/** | ||
* | ||
* Please note: | ||
* This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
* Do not edit this file manually. | ||
* | ||
*/ | ||
|
||
@file:Suppress( | ||
"ArrayInDataClass", | ||
"EnumEntryName", | ||
"RemoveRedundantQualifierName", | ||
"UnusedImport" | ||
) | ||
|
||
package org.hyperledger.identus.client.models | ||
|
||
|
||
import com.google.gson.annotations.SerializedName | ||
|
||
/** | ||
* | ||
* | ||
* @param aud | ||
*/ | ||
|
||
|
||
data class DidParameter : VcVerificationParameter(null, aud)( | ||
|
||
@SerializedName("aud") | ||
val aud: kotlin.String | ||
|
||
) | ||
|
39 changes: 39 additions & 0 deletions
39
...t/kotlin/src/main/kotlin/org/hyperledger/identus/client/models/VcVerificationParameter.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
/** | ||
* | ||
* Please note: | ||
* This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
* Do not edit this file manually. | ||
* | ||
*/ | ||
|
||
@file:Suppress( | ||
"ArrayInDataClass", | ||
"EnumEntryName", | ||
"RemoveRedundantQualifierName", | ||
"UnusedImport" | ||
) | ||
|
||
package org.hyperledger.identus.client.models | ||
|
||
import org.hyperledger.identus.client.models.DateTimeParameter | ||
import org.hyperledger.identus.client.models.DidParameter | ||
|
||
import com.google.gson.annotations.SerializedName | ||
|
||
/** | ||
* | ||
* | ||
* @param dateTime | ||
* @param aud | ||
*/ | ||
|
||
|
||
open class VcVerificationParameter ( | ||
|
||
@SerializedName("dateTime") | ||
val dateTime: java.time.OffsetDateTime? = null, | ||
|
||
@SerializedName("aud") | ||
val aud: kotlin.String? = null | ||
) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters