Skip to content

Commit

Permalink
Fix: Visibilityを修正
Browse files Browse the repository at this point in the history
  • Loading branch information
sevenc-nanashi committed Sep 13, 2023
1 parent 5e82723 commit 98f70fb
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,25 +47,25 @@ public static class SpeakerMeta {
@SerializedName("name")
@Expose
@Nonnull
final String name;
public final String name;

/** 話者に属するスタイル。 */
@SerializedName("styles")
@Expose
@Nonnull
final StyleMeta[] styles;
public final StyleMeta[] styles;

/** 話者のUUID。 */
@SerializedName("speaker_uuid")
@Expose
@Nonnull
final String speakerUuid;
public final String speakerUuid;

/** 話者のバージョン。 */
@SerializedName("version")
@Expose
@Nonnull
final String version;
public final String version;

private SpeakerMeta() {
// GSONからコンストラクトするため、このメソッドは呼ばれることは無い。
Expand All @@ -83,12 +83,12 @@ public static class StyleMeta {
@SerializedName("name")
@Expose
@Nonnull
final String name;
public final String name;

/** スタイルID。 */
@SerializedName("id")
@Expose
final int id;
public final int id;

private StyleMeta() {
this.name = "";
Expand Down

0 comments on commit 98f70fb

Please sign in to comment.