Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add file info method to retrieve all file info #359

Merged
merged 6 commits into from
Oct 14, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
add FileInfoRequestIF
ykaliukh committed Sep 30, 2024
commit 0600d8aa51e63c8b7f3de64443b13968afb4165c
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
package com.hubspot.slack.client.models.response.files;
opaliukh marked this conversation as resolved.
Show resolved Hide resolved

import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.databind.PropertyNamingStrategies.SnakeCaseStrategy;
import com.fasterxml.jackson.databind.annotation.JsonNaming;
import com.hubspot.immutables.style.HubSpotStyle;
import com.hubspot.slack.client.models.response.SlackResponse;
import org.immutables.value.Value.Immutable;

@Immutable
@HubSpotStyle
@JsonNaming(SnakeCaseStrategy.class)
public interface FileInfoRequestIF extends SlackResponse {
@JsonProperty("file")
String fileId();
}