Skip to content

Commit

Permalink
chore: updated readme for Beta flag (#815)
Browse files Browse the repository at this point in the history
  • Loading branch information
sbansla authored Sep 25, 2024
1 parent a8976a3 commit bb8ec5f
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,26 @@ This library supports the following Java implementations:

For Java 7 support, use `twilio-java` major version `7.X.X`.

### Beta Annotation

To indicate that a class or method is in beta and subject to change, we use the `@Beta` annotation. For example:

```java

@Beta
public class ClassName {
// Class implementation
}


public class ClassName {
@Beta
public void init() {
// Implementation
}
}
```

## Installation

`twilio-java` uses Maven. At present the jars _are_ available from a public [maven](https://mvnrepository.com/artifact/com.twilio.sdk/twilio) repository.
Expand Down

0 comments on commit bb8ec5f

Please sign in to comment.