This product is not supported for your selected Datadog site. ().
이 페이지는 아직 영어로 제공되지 않습니다. 번역 작업 중입니다. 현재 번역 프로젝트에 대한 질문이나 피드백이 있으신 경우 언제든지 연락주시기 바랍니다.
Metadata
ID:kotlin-code-style/annotation-spacing
Language: Kotlin
Severity: Notice
Category: Code Style
Description
Each annotations should be placed on a separate line. This is important because it makes the code more readable and easier to understand. When multiple annotations are placed on the same line, it can become difficult to distinguish between them and understand their individual impacts on the associated code.
@SerializableclassCreateActionRequest{@Suppress("unused")// All fields are required
@SerializableprivateclassData(valid:String,valattributes:Attributes){@EncodeDefaultvaltype="something"}}