///
import { inspect, InspectOptions } from "util";
import Page, { TwilioResponsePayload } from "../../../../../base/Page";
import Response from "../../../../../http/response";
import V2 from "../../../V2";
/**
* The push technology to use for the User Binding. Can be: `apn`, `gcm`, or `fcm`. See [push notification configuration](https://www.twilio.com/docs/chat/push-notification-configuration) for more info.
*/
export type UserBindingBindingType = "gcm" | "apn" | "fcm";
/**
* Options to pass to each
*/
export interface UserBindingListInstanceEachOptions {
/** The push technology used by the User Binding resources to read. Can be: `apn`, `gcm`, or `fcm`. See [push notification configuration](https://www.twilio.com/docs/chat/push-notification-configuration) for more info. */
bindingType?: Array;
/** How many resources to return in each list page. The default is 50, and the maximum is 1000. */
pageSize?: number;
/** Function to process each record. If this and a positional callback are passed, this one will be used */
callback?: (item: UserBindingInstance, done: (err?: Error) => void) => void;
/** Function to be called upon completion of streaming */
done?: Function;
/** Upper limit for the number of records to return. each() guarantees never to return more than limit. Default is no limit */
limit?: number;
}
/**
* Options to pass to list
*/
export interface UserBindingListInstanceOptions {
/** The push technology used by the User Binding resources to read. Can be: `apn`, `gcm`, or `fcm`. See [push notification configuration](https://www.twilio.com/docs/chat/push-notification-configuration) for more info. */
bindingType?: Array;
/** How many resources to return in each list page. The default is 50, and the maximum is 1000. */
pageSize?: number;
/** Upper limit for the number of records to return. list() guarantees never to return more than limit. Default is no limit */
limit?: number;
}
/**
* Options to pass to page
*/
export interface UserBindingListInstancePageOptions {
/** The push technology used by the User Binding resources to read. Can be: `apn`, `gcm`, or `fcm`. See [push notification configuration](https://www.twilio.com/docs/chat/push-notification-configuration) for more info. */
bindingType?: Array;
/** How many resources to return in each list page. The default is 50, and the maximum is 1000. */
pageSize?: number;
/** Page Number, this value is simply for client state */
pageNumber?: number;
/** PageToken provided by the API */
pageToken?: string;
}
export interface UserBindingContext {
/**
* Remove a UserBindingInstance
*
* @param callback - Callback to handle processed record
*
* @returns Resolves to processed boolean
*/
remove(callback?: (error: Error | null, item?: boolean) => any): Promise;
/**
* Fetch a UserBindingInstance
*
* @param callback - Callback to handle processed record
*
* @returns Resolves to processed UserBindingInstance
*/
fetch(callback?: (error: Error | null, item?: UserBindingInstance) => any): Promise;
/**
* Provide a user-friendly representation
*/
toJSON(): any;
[inspect.custom](_depth: any, options: InspectOptions): any;
}
export interface UserBindingContextSolution {
serviceSid: string;
userSid: string;
sid: string;
}
export declare class UserBindingContextImpl implements UserBindingContext {
protected _version: V2;
protected _solution: UserBindingContextSolution;
protected _uri: string;
constructor(_version: V2, serviceSid: string, userSid: string, sid: string);
remove(callback?: (error: Error | null, item?: boolean) => any): Promise;
fetch(callback?: (error: Error | null, item?: UserBindingInstance) => any): Promise;
/**
* Provide a user-friendly representation
*
* @returns Object
*/
toJSON(): UserBindingContextSolution;
[inspect.custom](_depth: any, options: InspectOptions): string;
}
interface UserBindingPayload extends TwilioResponsePayload {
bindings: UserBindingResource[];
}
interface UserBindingResource {
sid: string;
account_sid: string;
service_sid: string;
date_created: Date;
date_updated: Date;
endpoint: string;
identity: string;
user_sid: string;
credential_sid: string;
binding_type: UserBindingBindingType;
message_types: Array;
url: string;
}
export declare class UserBindingInstance {
protected _version: V2;
protected _solution: UserBindingContextSolution;
protected _context?: UserBindingContext;
constructor(_version: V2, payload: UserBindingResource, serviceSid: string, userSid: string, sid?: string);
/**
* The unique string that we created to identify the User Binding resource.
*/
sid: string;
/**
* The SID of the [Account](https://www.twilio.com/docs/iam/api/account) that created the User Binding resource.
*/
accountSid: string;
/**
* The SID of the [Service](https://www.twilio.com/docs/chat/rest/service-resource) the User Binding resource is associated with.
*/
serviceSid: string;
/**
* The date and time in GMT when the resource was created specified in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format.
*/
dateCreated: Date;
/**
* The date and time in GMT when the resource was last updated specified in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format.
*/
dateUpdated: Date;
/**
* The unique endpoint identifier for the User Binding. The format of the value depends on the `binding_type`.
*/
endpoint: string;
/**
* The application-defined string that uniquely identifies the resource\'s [User](https://www.twilio.com/docs/chat/rest/user-resource) within the [Service](https://www.twilio.com/docs/chat/rest/service-resource). See [access tokens](https://www.twilio.com/docs/chat/create-tokens) for more info.
*/
identity: string;
/**
* The SID of the [User](https://www.twilio.com/docs/chat/rest/user-resource) with the User Binding resource. See [push notification configuration](https://www.twilio.com/docs/chat/push-notification-configuration) for more info.
*/
userSid: string;
/**
* The SID of the [Credential](https://www.twilio.com/docs/chat/rest/credential-resource) for the binding. See [push notification configuration](https://www.twilio.com/docs/chat/push-notification-configuration) for more info.
*/
credentialSid: string;
bindingType: UserBindingBindingType;
/**
* The [Programmable Chat message types](https://www.twilio.com/docs/chat/push-notification-configuration#push-types) the binding is subscribed to.
*/
messageTypes: Array;
/**
* The absolute URL of the User Binding resource.
*/
url: string;
private get _proxy();
/**
* Remove a UserBindingInstance
*
* @param callback - Callback to handle processed record
*
* @returns Resolves to processed boolean
*/
remove(callback?: (error: Error | null, item?: boolean) => any): Promise;
/**
* Fetch a UserBindingInstance
*
* @param callback - Callback to handle processed record
*
* @returns Resolves to processed UserBindingInstance
*/
fetch(callback?: (error: Error | null, item?: UserBindingInstance) => any): Promise;
/**
* Provide a user-friendly representation
*
* @returns Object
*/
toJSON(): {
sid: string;
accountSid: string;
serviceSid: string;
dateCreated: Date;
dateUpdated: Date;
endpoint: string;
identity: string;
userSid: string;
credentialSid: string;
bindingType: UserBindingBindingType;
messageTypes: string[];
url: string;
};
[inspect.custom](_depth: any, options: InspectOptions): string;
}
export interface UserBindingSolution {
serviceSid: string;
userSid: string;
}
export interface UserBindingListInstance {
_version: V2;
_solution: UserBindingSolution;
_uri: string;
(sid: string): UserBindingContext;
get(sid: string): UserBindingContext;
/**
* Streams UserBindingInstance records from the API.
*
* This operation lazily loads records as efficiently as possible until the limit
* is reached.
*
* The results are passed into the callback function, so this operation is memory
* efficient.
*
* If a function is passed as the first argument, it will be used as the callback
* function.
*
* @param { UserBindingListInstanceEachOptions } [params] - Options for request
* @param { function } [callback] - Function to process each record
*/
each(callback?: (item: UserBindingInstance, done: (err?: Error) => void) => void): void;
each(params: UserBindingListInstanceEachOptions, callback?: (item: UserBindingInstance, done: (err?: Error) => void) => void): void;
/**
* Retrieve a single target page of UserBindingInstance records from the API.
*
* The request is executed immediately.
*
* @param { string } [targetUrl] - API-generated URL for the requested results page
* @param { function } [callback] - Callback to handle list of records
*/
getPage(targetUrl: string, callback?: (error: Error | null, items: UserBindingPage) => any): Promise;
/**
* Lists UserBindingInstance records from the API as a list.
*
* If a function is passed as the first argument, it will be used as the callback
* function.
*
* @param { UserBindingListInstanceOptions } [params] - Options for request
* @param { function } [callback] - Callback to handle list of records
*/
list(callback?: (error: Error | null, items: UserBindingInstance[]) => any): Promise;
list(params: UserBindingListInstanceOptions, callback?: (error: Error | null, items: UserBindingInstance[]) => any): Promise;
/**
* Retrieve a single page of UserBindingInstance records from the API.
*
* The request is executed immediately.
*
* If a function is passed as the first argument, it will be used as the callback
* function.
*
* @param { UserBindingListInstancePageOptions } [params] - Options for request
* @param { function } [callback] - Callback to handle list of records
*/
page(callback?: (error: Error | null, items: UserBindingPage) => any): Promise;
page(params: UserBindingListInstancePageOptions, callback?: (error: Error | null, items: UserBindingPage) => any): Promise;
/**
* Provide a user-friendly representation
*/
toJSON(): any;
[inspect.custom](_depth: any, options: InspectOptions): any;
}
export declare function UserBindingListInstance(version: V2, serviceSid: string, userSid: string): UserBindingListInstance;
export declare class UserBindingPage extends Page {
/**
* Initialize the UserBindingPage
*
* @param version - Version of the resource
* @param response - Response from the API
* @param solution - Path solution
*/
constructor(version: V2, response: Response, solution: UserBindingSolution);
/**
* Build an instance of UserBindingInstance
*
* @param payload - Payload response from the API
*/
getInstance(payload: UserBindingResource): UserBindingInstance;
[inspect.custom](depth: any, options: InspectOptions): string;
}
export {};