src/main/kotlin/com/jetbrains/notary/models/SubmissionLogURLResponse.kt [18:45]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - val data: Data?, /** * An empty object that you can ignore. */ val meta: Meta?, ) { @Serializable data class Data( /** * The unique identifier for this submission. This value matches the value that you provided as a path parameter to the Get Submission Log call that elicited this response. */ val id: String?, /** * The resource type. */ val type: String?, /** * */ val attributes: Attributes?, ) { /** * Information about the log associated with the submission. * * https://developer.apple.com/documentation/notaryapi/submissionlogurlresponse/data/attributes */ @Serializable data class Attributes( - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - src/main/kotlin/com/jetbrains/notary/models/SubmissionResponse.kt [16:48]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - val data: Data?, /** * An empty object that you can ignore. */ val meta: Meta?, ) { /** * Information that the service provides about the status of a notarization submission. * * https://developer.apple.com/documentation/notaryapi/submissionresponse/data */ @Serializable data class Data( /** * The unique identifier for this submission. This value matches the value that you provided as a path parameter to the Get Submission Status call that elicited this response. */ val id: String?, /** * The resource type. */ val type: String?, /** * Information about the status of a submission. */ val attributes: Attributes?, ) { /** * Information about the status of a submission. * * https://developer.apple.com/documentation/notaryapi/submissionresponse/data/attributes */ @Serializable data class Attributes( - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -