src/main/kotlin/com/jetbrains/notary/models/SubmissionListResponse.kt [36:75]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ) { /** * Information about the status of a submission. * * https://developer.apple.com/documentation/notaryapi/submissionlistresponse/data/attributes */ @Serializable data class Attributes( /** * The date that you started the submission process, given in ISO 8601 format, like 2022-06-08T01:38:09.498Z. */ val createdDate: String?, /** * The name that you specified in the submissionName field of the Submit Software call when you started the submission. */ val name: String?, /** * The status of the submission. */ val status: Status?, ) } @Serializable enum class Status { @SerialName("Accepted") ACCEPTED, @SerialName("In Progress") IN_PROGRESS, @SerialName("Invalid") INVALID, @SerialName("Rejected") REJECTED, } @Serializable class Meta - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - src/main/kotlin/com/jetbrains/notary/models/SubmissionResponse.kt [41:85]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ) { /** * Information about the status of a submission. * * https://developer.apple.com/documentation/notaryapi/submissionresponse/data/attributes */ @Serializable data class Attributes( /** * The date that you started the submission process, given in ISO 8601 format, like 2022-06-08T01:38:09.498Z. */ val createdDate: String?, /** * The name that you specified in the submissionName field of the Submit Software call when you started the submission. */ val name: String?, /** * The status of the submission. */ val status: Status?, ) } @Serializable enum class Status { @SerialName("Accepted") ACCEPTED, @SerialName("In Progress") IN_PROGRESS, @SerialName("Invalid") INVALID, @SerialName("Rejected") REJECTED, } /** * An empty object. * * https://developer.apple.com/documentation/notaryapi/submissionresponse/meta */ @Serializable class Meta - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -