Interface ShareInfoOrBuilder

  • All Superinterfaces:
    com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
    All Known Implementing Classes:
    ShareInfo, ShareInfo.Builder

    public interface ShareInfoOrBuilder
    extends com.google.protobuf.MessageOrBuilder
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      boolean getIsJoined()
      True if the user has joined the album.
      boolean getIsOwned()
      True if the user owns the album.
      java.lang.String getShareableUrl()
      A link to the album that's now shared on the Google Photos website and app.
      com.google.protobuf.ByteString getShareableUrlBytes()
      A link to the album that's now shared on the Google Photos website and app.
      SharedAlbumOptions getSharedAlbumOptions()
      Options that control the sharing of an album.
      SharedAlbumOptionsOrBuilder getSharedAlbumOptionsOrBuilder()
      Options that control the sharing of an album.
      java.lang.String getShareToken()
      A token that can be used by other users to join this shared album via the API.
      com.google.protobuf.ByteString getShareTokenBytes()
      A token that can be used by other users to join this shared album via the API.
      boolean hasSharedAlbumOptions()
      Options that control the sharing of an album.
      • Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        isInitialized
      • Methods inherited from interface com.google.protobuf.MessageOrBuilder

        findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
    • Method Detail

      • hasSharedAlbumOptions

        boolean hasSharedAlbumOptions()
         Options that control the sharing of an album.
         
        .google.photos.types.SharedAlbumOptions shared_album_options = 1;
      • getSharedAlbumOptions

        SharedAlbumOptions getSharedAlbumOptions()
         Options that control the sharing of an album.
         
        .google.photos.types.SharedAlbumOptions shared_album_options = 1;
      • getSharedAlbumOptionsOrBuilder

        SharedAlbumOptionsOrBuilder getSharedAlbumOptionsOrBuilder()
         Options that control the sharing of an album.
         
        .google.photos.types.SharedAlbumOptions shared_album_options = 1;
      • getShareableUrl

        java.lang.String getShareableUrl()
         A link to the album that's now shared on the Google Photos website and app.
         Anyone with the link can access this shared album and see all of the items
         present in the album.
         
        string shareable_url = 2;
      • getShareableUrlBytes

        com.google.protobuf.ByteString getShareableUrlBytes()
         A link to the album that's now shared on the Google Photos website and app.
         Anyone with the link can access this shared album and see all of the items
         present in the album.
         
        string shareable_url = 2;
      • getShareToken

        java.lang.String getShareToken()
         A token that can be used by other users to join this shared album via the
         API.
         
        string share_token = 3;
      • getShareTokenBytes

        com.google.protobuf.ByteString getShareTokenBytes()
         A token that can be used by other users to join this shared album via the
         API.
         
        string share_token = 3;
      • getIsJoined

        boolean getIsJoined()
         True if the user has joined the album. This is always true for the owner
         of the shared album.
         
        bool is_joined = 4;
      • getIsOwned

        boolean getIsOwned()
         True if the user owns the album.
         
        bool is_owned = 5;