This product is not supported for your selected Datadog site. ().
Cette page n'est pas encore disponible en français, sa traduction est en cours. Si vous avez des questions ou des retours sur notre projet de traduction actuel, n'hésitez pas à nous contacter.
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"}}