Documentation ¶
Index ¶
- Constants
- func NewCustomerContactServiceHandler(svc CustomerContactServiceHandler, opts ...connect_go.HandlerOption) (string, http.Handler)deprecated
- type CustomerContactServiceClientdeprecated
- type CustomerContactServiceHandlerdeprecated
- type UnimplementedCustomerContactServiceHandler
- func (UnimplementedCustomerContactServiceHandler) AcceptLatestTermsAndConditions(context.Context, ...) (*connect_go.Response[v2beta1.AcceptLatestTermsAndConditionsResponse], error)
- func (UnimplementedCustomerContactServiceHandler) GetAdvertisingInterests(context.Context, *connect_go.Request[v2beta1.GetAdvertisingInterestsRequest]) (*connect_go.Response[v2beta1.GetAdvertisingInterestsResponse], error)
- func (UnimplementedCustomerContactServiceHandler) HasAcceptedLatestTermsAndConditions(context.Context, ...) (*connect_go.Response[v2beta1.HasAcceptedLatestTermsAndConditionsResponse], ...)
- func (UnimplementedCustomerContactServiceHandler) SetAdvertisingInterests(context.Context, *connect_go.Request[v2beta1.SetAdvertisingInterestsRequest]) (*connect_go.Response[v2beta1.SetAdvertisingInterestsResponse], error)
Constants ¶
const ( // CustomerContactServiceAcceptLatestTermsAndConditionsProcedure is the fully-qualified name of the // CustomerContactService's AcceptLatestTermsAndConditions RPC. CustomerContactServiceAcceptLatestTermsAndConditionsProcedure = "/stargate.customer.contact.v2beta1.CustomerContactService/AcceptLatestTermsAndConditions" // CustomerContactServiceHasAcceptedLatestTermsAndConditionsProcedure is the fully-qualified name of // the CustomerContactService's HasAcceptedLatestTermsAndConditions RPC. CustomerContactServiceHasAcceptedLatestTermsAndConditionsProcedure = "/stargate.customer.contact.v2beta1.CustomerContactService/HasAcceptedLatestTermsAndConditions" // CustomerContactServiceGetAdvertisingInterestsProcedure is the fully-qualified name of the // CustomerContactService's GetAdvertisingInterests RPC. CustomerContactServiceGetAdvertisingInterestsProcedure = "/stargate.customer.contact.v2beta1.CustomerContactService/GetAdvertisingInterests" // CustomerContactServiceSetAdvertisingInterestsProcedure is the fully-qualified name of the // CustomerContactService's SetAdvertisingInterests RPC. CustomerContactServiceSetAdvertisingInterestsProcedure = "/stargate.customer.contact.v2beta1.CustomerContactService/SetAdvertisingInterests" )
These constants are the fully-qualified names of the RPCs defined in this package. They're exposed at runtime as Spec.Procedure and as the final two segments of the HTTP route.
Note that these are different from the fully-qualified method names used by google.golang.org/protobuf/reflect/protoreflect. To convert from these constants to reflection-formatted method names, remove the leading slash and convert the remaining slash to a period.
const (
// CustomerContactServiceName is the fully-qualified name of the CustomerContactService service.
CustomerContactServiceName = "stargate.customer.contact.v2beta1.CustomerContactService"
)
Variables ¶
This section is empty.
Functions ¶
func NewCustomerContactServiceHandler
deprecated
func NewCustomerContactServiceHandler(svc CustomerContactServiceHandler, opts ...connect_go.HandlerOption) (string, http.Handler)
NewCustomerContactServiceHandler builds an HTTP handler from the service implementation. It returns the path on which to mount the handler and the handler itself.
By default, handlers support the Connect, gRPC, and gRPC-Web protocols with the binary Protobuf and JSON codecs. They also support gzip compression.
Deprecated: do not use.
Types ¶
type CustomerContactServiceClient
deprecated
type CustomerContactServiceClient interface { AcceptLatestTermsAndConditions(context.Context, *connect_go.Request[v2beta1.AcceptLatestTermsAndConditionsRequest]) (*connect_go.Response[v2beta1.AcceptLatestTermsAndConditionsResponse], error) HasAcceptedLatestTermsAndConditions(context.Context, *connect_go.Request[v2beta1.HasAcceptedLatestTermsAndConditionsRequest]) (*connect_go.Response[v2beta1.HasAcceptedLatestTermsAndConditionsResponse], error) // Get advertising interests for a specific customer contact. GetAdvertisingInterests(context.Context, *connect_go.Request[v2beta1.GetAdvertisingInterestsRequest]) (*connect_go.Response[v2beta1.GetAdvertisingInterestsResponse], error) // Sets advertising interests for a specific customer contact. SetAdvertisingInterests(context.Context, *connect_go.Request[v2beta1.SetAdvertisingInterestsRequest]) (*connect_go.Response[v2beta1.SetAdvertisingInterestsResponse], error) }
CustomerContactServiceClient is a client for the stargate.customer.contact.v2beta1.CustomerContactService service.
Deprecated: do not use.
func NewCustomerContactServiceClient
deprecated
func NewCustomerContactServiceClient(httpClient connect_go.HTTPClient, baseURL string, opts ...connect_go.ClientOption) CustomerContactServiceClient
NewCustomerContactServiceClient constructs a client for the stargate.customer.contact.v2beta1.CustomerContactService service. By default, it uses the Connect protocol with the binary Protobuf Codec, asks for gzipped responses, and sends uncompressed requests. To use the gRPC or gRPC-Web protocols, supply the connect.WithGRPC() or connect.WithGRPCWeb() options.
The URL supplied here should be the base URL for the Connect or gRPC server (for example, http://api.acme.com or https://acme.com/grpc).
Deprecated: do not use.
type CustomerContactServiceHandler
deprecated
type CustomerContactServiceHandler interface { AcceptLatestTermsAndConditions(context.Context, *connect_go.Request[v2beta1.AcceptLatestTermsAndConditionsRequest]) (*connect_go.Response[v2beta1.AcceptLatestTermsAndConditionsResponse], error) HasAcceptedLatestTermsAndConditions(context.Context, *connect_go.Request[v2beta1.HasAcceptedLatestTermsAndConditionsRequest]) (*connect_go.Response[v2beta1.HasAcceptedLatestTermsAndConditionsResponse], error) // Get advertising interests for a specific customer contact. GetAdvertisingInterests(context.Context, *connect_go.Request[v2beta1.GetAdvertisingInterestsRequest]) (*connect_go.Response[v2beta1.GetAdvertisingInterestsResponse], error) // Sets advertising interests for a specific customer contact. SetAdvertisingInterests(context.Context, *connect_go.Request[v2beta1.SetAdvertisingInterestsRequest]) (*connect_go.Response[v2beta1.SetAdvertisingInterestsResponse], error) }
CustomerContactServiceHandler is an implementation of the stargate.customer.contact.v2beta1.CustomerContactService service.
Deprecated: do not use.
type UnimplementedCustomerContactServiceHandler ¶
type UnimplementedCustomerContactServiceHandler struct{}
UnimplementedCustomerContactServiceHandler returns CodeUnimplemented from all methods.
func (UnimplementedCustomerContactServiceHandler) AcceptLatestTermsAndConditions ¶
func (UnimplementedCustomerContactServiceHandler) AcceptLatestTermsAndConditions(context.Context, *connect_go.Request[v2beta1.AcceptLatestTermsAndConditionsRequest]) (*connect_go.Response[v2beta1.AcceptLatestTermsAndConditionsResponse], error)
func (UnimplementedCustomerContactServiceHandler) GetAdvertisingInterests ¶
func (UnimplementedCustomerContactServiceHandler) GetAdvertisingInterests(context.Context, *connect_go.Request[v2beta1.GetAdvertisingInterestsRequest]) (*connect_go.Response[v2beta1.GetAdvertisingInterestsResponse], error)
func (UnimplementedCustomerContactServiceHandler) HasAcceptedLatestTermsAndConditions ¶
func (UnimplementedCustomerContactServiceHandler) HasAcceptedLatestTermsAndConditions(context.Context, *connect_go.Request[v2beta1.HasAcceptedLatestTermsAndConditionsRequest]) (*connect_go.Response[v2beta1.HasAcceptedLatestTermsAndConditionsResponse], error)
func (UnimplementedCustomerContactServiceHandler) SetAdvertisingInterests ¶
func (UnimplementedCustomerContactServiceHandler) SetAdvertisingInterests(context.Context, *connect_go.Request[v2beta1.SetAdvertisingInterestsRequest]) (*connect_go.Response[v2beta1.SetAdvertisingInterestsResponse], error)