src/main/kotlin/com/jetbrains/notary/models/NewSubmissionResponse.kt [15:33]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - val data: Data?, /** * An empty object that you can ignore. */ val meta: Meta?, ) { /** * Information that the notary service provides for uploading your software for notarization and tracking the submission. * * https://developer.apple.com/documentation/notaryapi/newsubmissionresponse/data */ @Serializable data class Data( /** * A unique identifier for this submission. Use this value to track the status of your submission. * For example, you use it as the submissionID parameter in the Get Submission Status call, or to match against the id field in the response from the Get Previous Submissions call. */ val id: String?, val type: String?, - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - src/main/kotlin/com/jetbrains/notary/models/SubmissionResponse.kt [16:36]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 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?, - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -