repo stringlengths 5 67 | path stringlengths 4 116 | func_name stringlengths 0 58 | original_string stringlengths 52 373k | language stringclasses 1
value | code stringlengths 52 373k | code_tokens list | docstring stringlengths 4 11.8k | docstring_tokens list | sha stringlengths 40 40 | url stringlengths 86 226 | partition stringclasses 1
value |
|---|---|---|---|---|---|---|---|---|---|---|---|
popeindustries/lit-html-server | src/parts.js | resolveNodeValue | function resolveNodeValue(value, part) {
if (isDirective(value)) {
value = resolveDirectiveValue(value, part);
}
if (value === nothingString || value === undefined) {
return emptyStringBuffer;
}
if (isPrimitive(value)) {
const string = typeof value !== 'string' ? String(value) : value;
// Es... | javascript | function resolveNodeValue(value, part) {
if (isDirective(value)) {
value = resolveDirectiveValue(value, part);
}
if (value === nothingString || value === undefined) {
return emptyStringBuffer;
}
if (isPrimitive(value)) {
const string = typeof value !== 'string' ? String(value) : value;
// Es... | [
"function",
"resolveNodeValue",
"(",
"value",
",",
"part",
")",
"{",
"if",
"(",
"isDirective",
"(",
"value",
")",
")",
"{",
"value",
"=",
"resolveDirectiveValue",
"(",
"value",
",",
"part",
")",
";",
"}",
"if",
"(",
"value",
"===",
"nothingString",
"||",... | Resolve "value" to string Buffer if possible
@param { any } value
@param { NodePart } part
@returns { any } | [
"Resolve",
"value",
"to",
"string",
"Buffer",
"if",
"possible"
] | ad5cd24db5bd1352b7af6fc0543947a7711056d4 | https://github.com/popeindustries/lit-html-server/blob/ad5cd24db5bd1352b7af6fc0543947a7711056d4/src/parts.js#L299-L336 | train |
popeindustries/lit-html-server | src/parts.js | resolveAsyncIteratorValue | async function* resolveAsyncIteratorValue(iterator, part) {
for await (const value of iterator) {
yield resolveNodeValue(value, part);
}
} | javascript | async function* resolveAsyncIteratorValue(iterator, part) {
for await (const value of iterator) {
yield resolveNodeValue(value, part);
}
} | [
"async",
"function",
"*",
"resolveAsyncIteratorValue",
"(",
"iterator",
",",
"part",
")",
"{",
"for",
"await",
"(",
"const",
"value",
"of",
"iterator",
")",
"{",
"yield",
"resolveNodeValue",
"(",
"value",
",",
"part",
")",
";",
"}",
"}"
] | Resolve values of async "iterator"
@param { AsyncIterator } iterator
@param { NodePart } part
@returns { AsyncGenerator } | [
"Resolve",
"values",
"of",
"async",
"iterator"
] | ad5cd24db5bd1352b7af6fc0543947a7711056d4 | https://github.com/popeindustries/lit-html-server/blob/ad5cd24db5bd1352b7af6fc0543947a7711056d4/src/parts.js#L345-L349 | train |
popeindustries/lit-html-server | src/parts.js | resolveDirectiveValue | function resolveDirectiveValue(directive, part) {
// Directives are synchronous, so it's safe to read and delete value
directive(part);
const value = part._value;
part._value = undefined;
return value;
} | javascript | function resolveDirectiveValue(directive, part) {
// Directives are synchronous, so it's safe to read and delete value
directive(part);
const value = part._value;
part._value = undefined;
return value;
} | [
"function",
"resolveDirectiveValue",
"(",
"directive",
",",
"part",
")",
"{",
"// Directives are synchronous, so it's safe to read and delete value",
"directive",
"(",
"part",
")",
";",
"const",
"value",
"=",
"part",
".",
"_value",
";",
"part",
".",
"_value",
"=",
"... | Resolve value of "directive"
@param { function } directive
@param { Part } part
@returns { any } | [
"Resolve",
"value",
"of",
"directive"
] | ad5cd24db5bd1352b7af6fc0543947a7711056d4 | https://github.com/popeindustries/lit-html-server/blob/ad5cd24db5bd1352b7af6fc0543947a7711056d4/src/parts.js#L358-L364 | train |
popeindustries/lit-html-server | src/directives/until.js | untilDirective | function untilDirective(...args) {
return function(part) {
for (let i = 0, n = args.length; i < n; i++) {
const value = args[i];
// Render sync values immediately,
// or last value (async included) if no more values pending
if (isPrimitive(value) || i === n - 1) {
part.setValue(va... | javascript | function untilDirective(...args) {
return function(part) {
for (let i = 0, n = args.length; i < n; i++) {
const value = args[i];
// Render sync values immediately,
// or last value (async included) if no more values pending
if (isPrimitive(value) || i === n - 1) {
part.setValue(va... | [
"function",
"untilDirective",
"(",
"...",
"args",
")",
"{",
"return",
"function",
"(",
"part",
")",
"{",
"for",
"(",
"let",
"i",
"=",
"0",
",",
"n",
"=",
"args",
".",
"length",
";",
"i",
"<",
"n",
";",
"i",
"++",
")",
"{",
"const",
"value",
"="... | Renders one of a series of values, including Promises, in priority order.
Not possible to render more than once in a server context, so primitive
sync values are prioritised over async, unless there are no more pending
values, in which case the last value is always rendered regardless.
@param { ...: Array<any> } args
... | [
"Renders",
"one",
"of",
"a",
"series",
"of",
"values",
"including",
"Promises",
"in",
"priority",
"order",
".",
"Not",
"possible",
"to",
"render",
"more",
"than",
"once",
"in",
"a",
"server",
"context",
"so",
"primitive",
"sync",
"values",
"are",
"prioritise... | ad5cd24db5bd1352b7af6fc0543947a7711056d4 | https://github.com/popeindustries/lit-html-server/blob/ad5cd24db5bd1352b7af6fc0543947a7711056d4/src/directives/until.js#L15-L27 | train |
popeindustries/lit-html-server | src/browser.js | html | function html(strings, ...values) {
let template = templateCache.get(strings);
if (template === undefined) {
template = new Template(strings, defaultTemplateProcessor);
templateCache.set(strings, template);
}
return templateResult(template, values);
} | javascript | function html(strings, ...values) {
let template = templateCache.get(strings);
if (template === undefined) {
template = new Template(strings, defaultTemplateProcessor);
templateCache.set(strings, template);
}
return templateResult(template, values);
} | [
"function",
"html",
"(",
"strings",
",",
"...",
"values",
")",
"{",
"let",
"template",
"=",
"templateCache",
".",
"get",
"(",
"strings",
")",
";",
"if",
"(",
"template",
"===",
"undefined",
")",
"{",
"template",
"=",
"new",
"Template",
"(",
"strings",
... | Interprets a template literal as an HTML template that can be
rendered as a Readable stream or String
@param { Array<string> } strings
@param { ...any } values
@returns { TemplateResult } | [
"Interprets",
"a",
"template",
"literal",
"as",
"an",
"HTML",
"template",
"that",
"can",
"be",
"rendered",
"as",
"a",
"Readable",
"stream",
"or",
"String"
] | ad5cd24db5bd1352b7af6fc0543947a7711056d4 | https://github.com/popeindustries/lit-html-server/blob/ad5cd24db5bd1352b7af6fc0543947a7711056d4/src/browser.js#L37-L46 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | Timestamp | function Timestamp(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
} | javascript | function Timestamp(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
} | [
"function",
"Timestamp",
"(",
"properties",
")",
"{",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";",
"i",
"<",
"keys",
".",
"length",
";",
"++",
"i",
")",
"if"... | Properties of a Timestamp.
@memberof google.protobuf
@interface ITimestamp
@property {number|null} [seconds] Timestamp seconds
@property {number|null} [nanos] Timestamp nanos
Constructs a new Timestamp.
@memberof google.protobuf
@classdesc Represents a Timestamp.
@implements ITimestamp
@constructor
@param {google.pro... | [
"Properties",
"of",
"a",
"Timestamp",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L43-L48 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | FileDescriptorProto | function FileDescriptorProto(properties) {
this.dependency = [];
this.publicDependency = [];
this.weakDependency = [];
this.messageType = [];
this.enumType = [];
this.service = [];
this.extension = [];
... | javascript | function FileDescriptorProto(properties) {
this.dependency = [];
this.publicDependency = [];
this.weakDependency = [];
this.messageType = [];
this.enumType = [];
this.service = [];
this.extension = [];
... | [
"function",
"FileDescriptorProto",
"(",
"properties",
")",
"{",
"this",
".",
"dependency",
"=",
"[",
"]",
";",
"this",
".",
"publicDependency",
"=",
"[",
"]",
";",
"this",
".",
"weakDependency",
"=",
"[",
"]",
";",
"this",
".",
"messageType",
"=",
"[",
... | Properties of a FileDescriptorProto.
@memberof google.protobuf
@interface IFileDescriptorProto
@property {string|null} [name] FileDescriptorProto name
@property {string|null} ["package"] FileDescriptorProto package
@property {Array.<string>|null} [dependency] FileDescriptorProto dependency
@property {Array.<number>|nul... | [
"Properties",
"of",
"a",
"FileDescriptorProto",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L133-L145 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | DescriptorProto | function DescriptorProto(properties) {
this.field = [];
this.extension = [];
this.nestedType = [];
this.enumType = [];
this.extensionRange = [];
this.oneofDecl = [];
this.reservedRange = [];
t... | javascript | function DescriptorProto(properties) {
this.field = [];
this.extension = [];
this.nestedType = [];
this.enumType = [];
this.extensionRange = [];
this.oneofDecl = [];
this.reservedRange = [];
t... | [
"function",
"DescriptorProto",
"(",
"properties",
")",
"{",
"this",
".",
"field",
"=",
"[",
"]",
";",
"this",
".",
"extension",
"=",
"[",
"]",
";",
"this",
".",
"nestedType",
"=",
"[",
"]",
";",
"this",
".",
"enumType",
"=",
"[",
"]",
";",
"this",
... | Properties of a DescriptorProto.
@memberof google.protobuf
@interface IDescriptorProto
@property {string|null} [name] DescriptorProto name
@property {Array.<google.protobuf.IFieldDescriptorProto>|null} [field] DescriptorProto field
@property {Array.<google.protobuf.IFieldDescriptorProto>|null} [extension] DescriptorPro... | [
"Properties",
"of",
"a",
"DescriptorProto",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L272-L285 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | ExtensionRange | function ExtensionRange(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
} | javascript | function ExtensionRange(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
} | [
"function",
"ExtensionRange",
"(",
"properties",
")",
"{",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";",
"i",
"<",
"keys",
".",
"length",
";",
"++",
"i",
")",
... | Properties of an ExtensionRange.
@memberof google.protobuf.DescriptorProto
@interface IExtensionRange
@property {number|null} [start] ExtensionRange start
@property {number|null} [end] ExtensionRange end
Constructs a new ExtensionRange.
@memberof google.protobuf.DescriptorProto
@classdesc Represents an ExtensionRange... | [
"Properties",
"of",
"an",
"ExtensionRange",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L385-L390 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | ReservedRange | function ReservedRange(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
} | javascript | function ReservedRange(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
} | [
"function",
"ReservedRange",
"(",
"properties",
")",
"{",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";",
"i",
"<",
"keys",
".",
"length",
";",
"++",
"i",
")",
... | Properties of a ReservedRange.
@memberof google.protobuf.DescriptorProto
@interface IReservedRange
@property {number|null} [start] ReservedRange start
@property {number|null} [end] ReservedRange end
Constructs a new ReservedRange.
@memberof google.protobuf.DescriptorProto
@classdesc Represents a ReservedRange.
@imple... | [
"Properties",
"of",
"a",
"ReservedRange",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L429-L434 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | FieldDescriptorProto | function FieldDescriptorProto(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
} | javascript | function FieldDescriptorProto(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
} | [
"function",
"FieldDescriptorProto",
"(",
"properties",
")",
"{",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";",
"i",
"<",
"keys",
".",
"length",
";",
"++",
"i",
... | Properties of a FieldDescriptorProto.
@memberof google.protobuf
@interface IFieldDescriptorProto
@property {string|null} [name] FieldDescriptorProto name
@property {number|null} [number] FieldDescriptorProto number
@property {google.protobuf.FieldDescriptorProto.Label|null} [label] FieldDescriptorProto label
@property ... | [
"Properties",
"of",
"a",
"FieldDescriptorProto",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L484-L489 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | OneofDescriptorProto | function OneofDescriptorProto(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
} | javascript | function OneofDescriptorProto(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
} | [
"function",
"OneofDescriptorProto",
"(",
"properties",
")",
"{",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";",
"i",
"<",
"keys",
".",
"length",
";",
"++",
"i",
... | Properties of an OneofDescriptorProto.
@memberof google.protobuf
@interface IOneofDescriptorProto
@property {string|null} [name] OneofDescriptorProto name
@property {google.protobuf.IOneofOptions|null} [options] OneofDescriptorProto options
Constructs a new OneofDescriptorProto.
@memberof google.protobuf
@classdesc R... | [
"Properties",
"of",
"an",
"OneofDescriptorProto",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L654-L659 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | EnumDescriptorProto | function EnumDescriptorProto(properties) {
this.value = [];
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
... | javascript | function EnumDescriptorProto(properties) {
this.value = [];
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
... | [
"function",
"EnumDescriptorProto",
"(",
"properties",
")",
"{",
"this",
".",
"value",
"=",
"[",
"]",
";",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";",
"i",
"<"... | Properties of an EnumDescriptorProto.
@memberof google.protobuf
@interface IEnumDescriptorProto
@property {string|null} [name] EnumDescriptorProto name
@property {Array.<google.protobuf.IEnumValueDescriptorProto>|null} [value] EnumDescriptorProto value
@property {google.protobuf.IEnumOptions|null} [options] EnumDescrip... | [
"Properties",
"of",
"an",
"EnumDescriptorProto",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L699-L705 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | EnumValueDescriptorProto | function EnumValueDescriptorProto(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
} | javascript | function EnumValueDescriptorProto(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
} | [
"function",
"EnumValueDescriptorProto",
"(",
"properties",
")",
"{",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";",
"i",
"<",
"keys",
".",
"length",
";",
"++",
"i"... | Properties of an EnumValueDescriptorProto.
@memberof google.protobuf
@interface IEnumValueDescriptorProto
@property {string|null} [name] EnumValueDescriptorProto name
@property {number|null} [number] EnumValueDescriptorProto number
@property {google.protobuf.IEnumValueOptions|null} [options] EnumValueDescriptorProto op... | [
"Properties",
"of",
"an",
"EnumValueDescriptorProto",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L753-L758 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | ServiceDescriptorProto | function ServiceDescriptorProto(properties) {
this.method = [];
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i... | javascript | function ServiceDescriptorProto(properties) {
this.method = [];
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i... | [
"function",
"ServiceDescriptorProto",
"(",
"properties",
")",
"{",
"this",
".",
"method",
"=",
"[",
"]",
";",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";",
"i",
... | Properties of a ServiceDescriptorProto.
@memberof google.protobuf
@interface IServiceDescriptorProto
@property {string|null} [name] ServiceDescriptorProto name
@property {Array.<google.protobuf.IMethodDescriptorProto>|null} [method] ServiceDescriptorProto method
@property {google.protobuf.IServiceOptions|null} [options... | [
"Properties",
"of",
"a",
"ServiceDescriptorProto",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L806-L812 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | MethodDescriptorProto | function MethodDescriptorProto(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
} | javascript | function MethodDescriptorProto(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
} | [
"function",
"MethodDescriptorProto",
"(",
"properties",
")",
"{",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";",
"i",
"<",
"keys",
".",
"length",
";",
"++",
"i",
... | Properties of a MethodDescriptorProto.
@memberof google.protobuf
@interface IMethodDescriptorProto
@property {string|null} [name] MethodDescriptorProto name
@property {string|null} [inputType] MethodDescriptorProto inputType
@property {string|null} [outputType] MethodDescriptorProto outputType
@property {google.protobu... | [
"Properties",
"of",
"a",
"MethodDescriptorProto",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L863-L868 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | FileOptions | function FileOptions(properties) {
this.uninterpretedOption = [];
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys... | javascript | function FileOptions(properties) {
this.uninterpretedOption = [];
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys... | [
"function",
"FileOptions",
"(",
"properties",
")",
"{",
"this",
".",
"uninterpretedOption",
"=",
"[",
"]",
";",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";",
"i",... | Properties of a FileOptions.
@memberof google.protobuf
@interface IFileOptions
@property {string|null} [javaPackage] FileOptions javaPackage
@property {string|null} [javaOuterClassname] FileOptions javaOuterClassname
@property {boolean|null} [javaMultipleFiles] FileOptions javaMultipleFiles
@property {boolean|null} [ja... | [
"Properties",
"of",
"a",
"FileOptions",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L952-L958 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | MessageOptions | function MessageOptions(properties) {
this.uninterpretedOption = [];
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[k... | javascript | function MessageOptions(properties) {
this.uninterpretedOption = [];
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[k... | [
"function",
"MessageOptions",
"(",
"properties",
")",
"{",
"this",
".",
"uninterpretedOption",
"=",
"[",
"]",
";",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";",
"... | Properties of a MessageOptions.
@memberof google.protobuf
@interface IMessageOptions
@property {boolean|null} [messageSetWireFormat] MessageOptions messageSetWireFormat
@property {boolean|null} [noStandardDescriptorAccessor] MessageOptions noStandardDescriptorAccessor
@property {boolean|null} [deprecated] MessageOption... | [
"Properties",
"of",
"a",
"MessageOptions",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L1120-L1126 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | FieldOptions | function FieldOptions(properties) {
this.uninterpretedOption = [];
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[key... | javascript | function FieldOptions(properties) {
this.uninterpretedOption = [];
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[key... | [
"function",
"FieldOptions",
"(",
"properties",
")",
"{",
"this",
".",
"uninterpretedOption",
"=",
"[",
"]",
";",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";",
"i"... | Properties of a FieldOptions.
@memberof google.protobuf
@interface IFieldOptions
@property {google.protobuf.FieldOptions.CType|null} [ctype] FieldOptions ctype
@property {boolean|null} [packed] FieldOptions packed
@property {google.protobuf.FieldOptions.JSType|null} [jstype] FieldOptions jstype
@property {boolean|null}... | [
"Properties",
"of",
"a",
"FieldOptions",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L1194-L1200 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | EnumOptions | function EnumOptions(properties) {
this.uninterpretedOption = [];
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys... | javascript | function EnumOptions(properties) {
this.uninterpretedOption = [];
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys... | [
"function",
"EnumOptions",
"(",
"properties",
")",
"{",
"this",
".",
"uninterpretedOption",
"=",
"[",
"]",
";",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";",
"i",... | Properties of an EnumOptions.
@memberof google.protobuf
@interface IEnumOptions
@property {boolean|null} [allowAlias] EnumOptions allowAlias
@property {boolean|null} [deprecated] EnumOptions deprecated
@property {Array.<google.protobuf.IUninterpretedOption>|null} [uninterpretedOption] EnumOptions uninterpretedOption
... | [
"Properties",
"of",
"an",
"EnumOptions",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L1348-L1354 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | EnumValueOptions | function EnumValueOptions(properties) {
this.uninterpretedOption = [];
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties... | javascript | function EnumValueOptions(properties) {
this.uninterpretedOption = [];
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties... | [
"function",
"EnumValueOptions",
"(",
"properties",
")",
"{",
"this",
".",
"uninterpretedOption",
"=",
"[",
"]",
";",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";",
... | Properties of an EnumValueOptions.
@memberof google.protobuf
@interface IEnumValueOptions
@property {boolean|null} [deprecated] EnumValueOptions deprecated
@property {Array.<google.protobuf.IUninterpretedOption>|null} [uninterpretedOption] EnumValueOptions uninterpretedOption
Constructs a new EnumValueOptions.
@membe... | [
"Properties",
"of",
"an",
"EnumValueOptions",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L1401-L1407 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | ServiceOptions | function ServiceOptions(properties) {
this.uninterpretedOption = [];
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[k... | javascript | function ServiceOptions(properties) {
this.uninterpretedOption = [];
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[k... | [
"function",
"ServiceOptions",
"(",
"properties",
")",
"{",
"this",
".",
"uninterpretedOption",
"=",
"[",
"]",
";",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";",
"... | Properties of a ServiceOptions.
@memberof google.protobuf
@interface IServiceOptions
@property {boolean|null} [deprecated] ServiceOptions deprecated
@property {Array.<google.protobuf.IUninterpretedOption>|null} [uninterpretedOption] ServiceOptions uninterpretedOption
Constructs a new ServiceOptions.
@memberof google.... | [
"Properties",
"of",
"a",
"ServiceOptions",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L1446-L1452 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | MethodOptions | function MethodOptions(properties) {
this.uninterpretedOption = [];
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[ke... | javascript | function MethodOptions(properties) {
this.uninterpretedOption = [];
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[ke... | [
"function",
"MethodOptions",
"(",
"properties",
")",
"{",
"this",
".",
"uninterpretedOption",
"=",
"[",
"]",
";",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";",
"i... | Properties of a MethodOptions.
@memberof google.protobuf
@interface IMethodOptions
@property {boolean|null} [deprecated] MethodOptions deprecated
@property {Array.<google.protobuf.IUninterpretedOption>|null} [uninterpretedOption] MethodOptions uninterpretedOption
@property {google.api.IHttpRule|null} [".google.api.http... | [
"Properties",
"of",
"a",
"MethodOptions",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L1493-L1499 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | UninterpretedOption | function UninterpretedOption(properties) {
this.name = [];
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
... | javascript | function UninterpretedOption(properties) {
this.name = [];
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
... | [
"function",
"UninterpretedOption",
"(",
"properties",
")",
"{",
"this",
".",
"name",
"=",
"[",
"]",
";",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";",
"i",
"<",... | Properties of an UninterpretedOption.
@memberof google.protobuf
@interface IUninterpretedOption
@property {Array.<google.protobuf.UninterpretedOption.INamePart>|null} [name] UninterpretedOption name
@property {string|null} [identifierValue] UninterpretedOption identifierValue
@property {number|null} [positiveIntValue] ... | [
"Properties",
"of",
"an",
"UninterpretedOption",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L1559-L1565 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | NamePart | function NamePart(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
} | javascript | function NamePart(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
} | [
"function",
"NamePart",
"(",
"properties",
")",
"{",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";",
"i",
"<",
"keys",
".",
"length",
";",
"++",
"i",
")",
"if",... | Properties of a NamePart.
@memberof google.protobuf.UninterpretedOption
@interface INamePart
@property {string} namePart NamePart namePart
@property {boolean} isExtension NamePart isExtension
Constructs a new NamePart.
@memberof google.protobuf.UninterpretedOption
@classdesc Represents a NamePart.
@implements INamePa... | [
"Properties",
"of",
"a",
"NamePart",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L1641-L1646 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | SourceCodeInfo | function SourceCodeInfo(properties) {
this.location = [];
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
... | javascript | function SourceCodeInfo(properties) {
this.location = [];
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
... | [
"function",
"SourceCodeInfo",
"(",
"properties",
")",
"{",
"this",
".",
"location",
"=",
"[",
"]",
";",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";",
"i",
"<",
... | Properties of a SourceCodeInfo.
@memberof google.protobuf
@interface ISourceCodeInfo
@property {Array.<google.protobuf.SourceCodeInfo.ILocation>|null} [location] SourceCodeInfo location
Constructs a new SourceCodeInfo.
@memberof google.protobuf
@classdesc Represents a SourceCodeInfo.
@implements ISourceCodeInfo
@cons... | [
"Properties",
"of",
"a",
"SourceCodeInfo",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L1687-L1693 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | GeneratedCodeInfo | function GeneratedCodeInfo(properties) {
this.annotation = [];
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]... | javascript | function GeneratedCodeInfo(properties) {
this.annotation = [];
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]... | [
"function",
"GeneratedCodeInfo",
"(",
"properties",
")",
"{",
"this",
".",
"annotation",
"=",
"[",
"]",
";",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";",
"i",
... | Properties of a GeneratedCodeInfo.
@memberof google.protobuf
@interface IGeneratedCodeInfo
@property {Array.<google.protobuf.GeneratedCodeInfo.IAnnotation>|null} [annotation] GeneratedCodeInfo annotation
Constructs a new GeneratedCodeInfo.
@memberof google.protobuf
@classdesc Represents a GeneratedCodeInfo.
@implemen... | [
"Properties",
"of",
"a",
"GeneratedCodeInfo",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L1797-L1803 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | Annotation | function Annotation(properties) {
this.path = [];
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[... | javascript | function Annotation(properties) {
this.path = [];
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[... | [
"function",
"Annotation",
"(",
"properties",
")",
"{",
"this",
".",
"path",
"=",
"[",
"]",
";",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";",
"i",
"<",
"keys"... | Properties of an Annotation.
@memberof google.protobuf.GeneratedCodeInfo
@interface IAnnotation
@property {Array.<number>|null} [path] Annotation path
@property {string|null} [sourceFile] Annotation sourceFile
@property {number|null} [begin] Annotation begin
@property {number|null} [end] Annotation end
Constructs a n... | [
"Properties",
"of",
"an",
"Annotation",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L1833-L1839 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | Struct | function Struct(properties) {
this.fields = {};
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
... | javascript | function Struct(properties) {
this.fields = {};
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
... | [
"function",
"Struct",
"(",
"properties",
")",
"{",
"this",
".",
"fields",
"=",
"{",
"}",
";",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";",
"i",
"<",
"keys",
... | Properties of a Struct.
@memberof google.protobuf
@interface IStruct
@property {Object.<string,google.protobuf.IValue>|null} [fields] Struct fields
Constructs a new Struct.
@memberof google.protobuf
@classdesc Represents a Struct.
@implements IStruct
@constructor
@param {google.protobuf.IStruct=} [properties] Propert... | [
"Properties",
"of",
"a",
"Struct",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L1896-L1902 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | Value | function Value(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
} | javascript | function Value(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
} | [
"function",
"Value",
"(",
"properties",
")",
"{",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";",
"i",
"<",
"keys",
".",
"length",
";",
"++",
"i",
")",
"if",
... | Properties of a Value.
@memberof google.protobuf
@interface IValue
@property {google.protobuf.NullValue|null} [nullValue] Value nullValue
@property {number|null} [numberValue] Value numberValue
@property {string|null} [stringValue] Value stringValue
@property {boolean|null} [boolValue] Value boolValue
@property {google... | [
"Properties",
"of",
"a",
"Value",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L1937-L1942 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | DoubleValue | function DoubleValue(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
} | javascript | function DoubleValue(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
} | [
"function",
"DoubleValue",
"(",
"properties",
")",
"{",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";",
"i",
"<",
"keys",
".",
"length",
";",
"++",
"i",
")",
"i... | Properties of a DoubleValue.
@memberof google.protobuf
@interface IDoubleValue
@property {number|null} [value] DoubleValue value
Constructs a new DoubleValue.
@memberof google.protobuf
@classdesc Represents a DoubleValue.
@implements IDoubleValue
@constructor
@param {google.protobuf.IDoubleValue=} [properties] Proper... | [
"Properties",
"of",
"a",
"DoubleValue",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L2100-L2105 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | FloatValue | function FloatValue(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
} | javascript | function FloatValue(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
} | [
"function",
"FloatValue",
"(",
"properties",
")",
"{",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";",
"i",
"<",
"keys",
".",
"length",
";",
"++",
"i",
")",
"if... | Properties of a FloatValue.
@memberof google.protobuf
@interface IFloatValue
@property {number|null} [value] FloatValue value
Constructs a new FloatValue.
@memberof google.protobuf
@classdesc Represents a FloatValue.
@implements IFloatValue
@constructor
@param {google.protobuf.IFloatValue=} [properties] Properties to... | [
"Properties",
"of",
"a",
"FloatValue",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L2135-L2140 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | Int64Value | function Int64Value(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
} | javascript | function Int64Value(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
} | [
"function",
"Int64Value",
"(",
"properties",
")",
"{",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";",
"i",
"<",
"keys",
".",
"length",
";",
"++",
"i",
")",
"if... | Properties of an Int64Value.
@memberof google.protobuf
@interface IInt64Value
@property {number|null} [value] Int64Value value
Constructs a new Int64Value.
@memberof google.protobuf
@classdesc Represents an Int64Value.
@implements IInt64Value
@constructor
@param {google.protobuf.IInt64Value=} [properties] Properties ... | [
"Properties",
"of",
"an",
"Int64Value",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L2170-L2175 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | UInt64Value | function UInt64Value(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
} | javascript | function UInt64Value(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
} | [
"function",
"UInt64Value",
"(",
"properties",
")",
"{",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";",
"i",
"<",
"keys",
".",
"length",
";",
"++",
"i",
")",
"i... | Properties of a UInt64Value.
@memberof google.protobuf
@interface IUInt64Value
@property {number|null} [value] UInt64Value value
Constructs a new UInt64Value.
@memberof google.protobuf
@classdesc Represents a UInt64Value.
@implements IUInt64Value
@constructor
@param {google.protobuf.IUInt64Value=} [properties] Proper... | [
"Properties",
"of",
"a",
"UInt64Value",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L2205-L2210 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | Int32Value | function Int32Value(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
} | javascript | function Int32Value(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
} | [
"function",
"Int32Value",
"(",
"properties",
")",
"{",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";",
"i",
"<",
"keys",
".",
"length",
";",
"++",
"i",
")",
"if... | Properties of an Int32Value.
@memberof google.protobuf
@interface IInt32Value
@property {number|null} [value] Int32Value value
Constructs a new Int32Value.
@memberof google.protobuf
@classdesc Represents an Int32Value.
@implements IInt32Value
@constructor
@param {google.protobuf.IInt32Value=} [properties] Properties ... | [
"Properties",
"of",
"an",
"Int32Value",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L2240-L2245 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | UInt32Value | function UInt32Value(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
} | javascript | function UInt32Value(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
} | [
"function",
"UInt32Value",
"(",
"properties",
")",
"{",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";",
"i",
"<",
"keys",
".",
"length",
";",
"++",
"i",
")",
"i... | Properties of a UInt32Value.
@memberof google.protobuf
@interface IUInt32Value
@property {number|null} [value] UInt32Value value
Constructs a new UInt32Value.
@memberof google.protobuf
@classdesc Represents a UInt32Value.
@implements IUInt32Value
@constructor
@param {google.protobuf.IUInt32Value=} [properties] Proper... | [
"Properties",
"of",
"a",
"UInt32Value",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L2275-L2280 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | BoolValue | function BoolValue(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
} | javascript | function BoolValue(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
} | [
"function",
"BoolValue",
"(",
"properties",
")",
"{",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";",
"i",
"<",
"keys",
".",
"length",
";",
"++",
"i",
")",
"if"... | Properties of a BoolValue.
@memberof google.protobuf
@interface IBoolValue
@property {boolean|null} [value] BoolValue value
Constructs a new BoolValue.
@memberof google.protobuf
@classdesc Represents a BoolValue.
@implements IBoolValue
@constructor
@param {google.protobuf.IBoolValue=} [properties] Properties to set | [
"Properties",
"of",
"a",
"BoolValue",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L2310-L2315 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | StringValue | function StringValue(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
} | javascript | function StringValue(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
} | [
"function",
"StringValue",
"(",
"properties",
")",
"{",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";",
"i",
"<",
"keys",
".",
"length",
";",
"++",
"i",
")",
"i... | Properties of a StringValue.
@memberof google.protobuf
@interface IStringValue
@property {string|null} [value] StringValue value
Constructs a new StringValue.
@memberof google.protobuf
@classdesc Represents a StringValue.
@implements IStringValue
@constructor
@param {google.protobuf.IStringValue=} [properties] Proper... | [
"Properties",
"of",
"a",
"StringValue",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L2345-L2350 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | BytesValue | function BytesValue(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
} | javascript | function BytesValue(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
} | [
"function",
"BytesValue",
"(",
"properties",
")",
"{",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";",
"i",
"<",
"keys",
".",
"length",
";",
"++",
"i",
")",
"if... | Properties of a BytesValue.
@memberof google.protobuf
@interface IBytesValue
@property {Uint8Array|null} [value] BytesValue value
Constructs a new BytesValue.
@memberof google.protobuf
@classdesc Represents a BytesValue.
@implements IBytesValue
@constructor
@param {google.protobuf.IBytesValue=} [properties] Propertie... | [
"Properties",
"of",
"a",
"BytesValue",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L2380-L2385 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | Any | function Any(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
} | javascript | function Any(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
} | [
"function",
"Any",
"(",
"properties",
")",
"{",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";",
"i",
"<",
"keys",
".",
"length",
";",
"++",
"i",
")",
"if",
"(... | Properties of an Any.
@memberof google.protobuf
@interface IAny
@property {string|null} [type_url] Any type_url
@property {Uint8Array|null} [value] Any value
Constructs a new Any.
@memberof google.protobuf
@classdesc Represents an Any.
@implements IAny
@constructor
@param {google.protobuf.IAny=} [properties] Properti... | [
"Properties",
"of",
"an",
"Any",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L2416-L2421 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | Duration | function Duration(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
} | javascript | function Duration(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
} | [
"function",
"Duration",
"(",
"properties",
")",
"{",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";",
"i",
"<",
"keys",
".",
"length",
";",
"++",
"i",
")",
"if",... | Properties of a Duration.
@memberof google.protobuf
@interface IDuration
@property {number|null} [seconds] Duration seconds
@property {number|null} [nanos] Duration nanos
Constructs a new Duration.
@memberof google.protobuf
@classdesc Represents a Duration.
@implements IDuration
@constructor
@param {google.protobuf.I... | [
"Properties",
"of",
"a",
"Duration",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L2496-L2501 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | Precondition | function Precondition(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
} | javascript | function Precondition(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
} | [
"function",
"Precondition",
"(",
"properties",
")",
"{",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";",
"i",
"<",
"keys",
".",
"length",
";",
"++",
"i",
")",
"... | Properties of a Precondition.
@memberof google.firestore.v1
@interface IPrecondition
@property {boolean|null} [exists] Precondition exists
@property {google.protobuf.ITimestamp|null} [updateTime] Precondition updateTime
Constructs a new Precondition.
@memberof google.firestore.v1
@classdesc Represents a Precondition.... | [
"Properties",
"of",
"a",
"Precondition",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L2597-L2602 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | TransactionOptions | function TransactionOptions(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
} | javascript | function TransactionOptions(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
} | [
"function",
"TransactionOptions",
"(",
"properties",
")",
"{",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";",
"i",
"<",
"keys",
".",
"length",
";",
"++",
"i",
")... | Properties of a TransactionOptions.
@memberof google.firestore.v1
@interface ITransactionOptions
@property {google.firestore.v1.TransactionOptions.IReadOnly|null} [readOnly] TransactionOptions readOnly
@property {google.firestore.v1.TransactionOptions.IReadWrite|null} [readWrite] TransactionOptions readWrite
Construc... | [
"Properties",
"of",
"a",
"TransactionOptions",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L2655-L2660 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | ReadWrite | function ReadWrite(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
... | javascript | function ReadWrite(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
... | [
"function",
"ReadWrite",
"(",
"properties",
")",
"{",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";",
"i",
"<",
"keys",
".",
"length",
";",
"++",
"i",
")",
"if"... | Properties of a ReadWrite.
@memberof google.firestore.v1.TransactionOptions
@interface IReadWrite
@property {Uint8Array|null} [retryTransaction] ReadWrite retryTransaction
Constructs a new ReadWrite.
@memberof google.firestore.v1.TransactionOptions
@classdesc Represents a ReadWrite.
@implements IReadWrite
@constructo... | [
"Properties",
"of",
"a",
"ReadWrite",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L2709-L2714 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | ReadOnly | function ReadOnly(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
... | javascript | function ReadOnly(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
... | [
"function",
"ReadOnly",
"(",
"properties",
")",
"{",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";",
"i",
"<",
"keys",
".",
"length",
";",
"++",
"i",
")",
"if",... | Properties of a ReadOnly.
@memberof google.firestore.v1.TransactionOptions
@interface IReadOnly
@property {google.protobuf.ITimestamp|null} [readTime] ReadOnly readTime
Constructs a new ReadOnly.
@memberof google.firestore.v1.TransactionOptions
@classdesc Represents a ReadOnly.
@implements IReadOnly
@constructor
@par... | [
"Properties",
"of",
"a",
"ReadOnly",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L2744-L2749 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | Document | function Document(properties) {
this.fields = {};
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[... | javascript | function Document(properties) {
this.fields = {};
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[... | [
"function",
"Document",
"(",
"properties",
")",
"{",
"this",
".",
"fields",
"=",
"{",
"}",
";",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";",
"i",
"<",
"keys"... | Properties of a Document.
@memberof google.firestore.v1
@interface IDocument
@property {string|null} [name] Document name
@property {Object.<string,google.firestore.v1.IValue>|null} [fields] Document fields
@property {google.protobuf.ITimestamp|null} [createTime] Document createTime
@property {google.protobuf.ITimestam... | [
"Properties",
"of",
"a",
"Document",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L2799-L2805 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | ArrayValue | function ArrayValue(properties) {
this.values = [];
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = propertie... | javascript | function ArrayValue(properties) {
this.values = [];
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = propertie... | [
"function",
"ArrayValue",
"(",
"properties",
")",
"{",
"this",
".",
"values",
"=",
"[",
"]",
";",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";",
"i",
"<",
"key... | Properties of an ArrayValue.
@memberof google.firestore.v1
@interface IArrayValue
@property {Array.<google.firestore.v1.IValue>|null} [values] ArrayValue values
Constructs a new ArrayValue.
@memberof google.firestore.v1
@classdesc Represents an ArrayValue.
@implements IArrayValue
@constructor
@param {google.firestore... | [
"Properties",
"of",
"an",
"ArrayValue",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L2998-L3004 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | GetDocumentRequest | function GetDocumentRequest(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
} | javascript | function GetDocumentRequest(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
} | [
"function",
"GetDocumentRequest",
"(",
"properties",
")",
"{",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";",
"i",
"<",
"keys",
".",
"length",
";",
"++",
"i",
")... | Properties of a GetDocumentRequest.
@memberof google.firestore.v1
@interface IGetDocumentRequest
@property {string|null} [name] GetDocumentRequest name
@property {google.firestore.v1.IDocumentMask|null} [mask] GetDocumentRequest mask
@property {Uint8Array|null} [transaction] GetDocumentRequest transaction
@property {go... | [
"Properties",
"of",
"a",
"GetDocumentRequest",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L3523-L3528 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | ListDocumentsRequest | function ListDocumentsRequest(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
... | javascript | function ListDocumentsRequest(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
... | [
"function",
"ListDocumentsRequest",
"(",
"properties",
")",
"{",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";",
"i",
"<",
"keys",
".",
"length",
";",
"++",
"i",
... | Properties of a ListDocumentsRequest.
@memberof google.firestore.v1
@interface IListDocumentsRequest
@property {string|null} [parent] ListDocumentsRequest parent
@property {string|null} [collectionId] ListDocumentsRequest collectionId
@property {number|null} [pageSize] ListDocumentsRequest pageSize
@property {string|nu... | [
"Properties",
"of",
"a",
"ListDocumentsRequest",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L3604-L3609 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | ListDocumentsResponse | function ListDocumentsResponse(properties) {
this.documents = [];
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i... | javascript | function ListDocumentsResponse(properties) {
this.documents = [];
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i... | [
"function",
"ListDocumentsResponse",
"(",
"properties",
")",
"{",
"this",
".",
"documents",
"=",
"[",
"]",
";",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";",
"i",... | Properties of a ListDocumentsResponse.
@memberof google.firestore.v1
@interface IListDocumentsResponse
@property {Array.<google.firestore.v1.IDocument>|null} [documents] ListDocumentsResponse documents
@property {string|null} [nextPageToken] ListDocumentsResponse nextPageToken
Constructs a new ListDocumentsResponse.
... | [
"Properties",
"of",
"a",
"ListDocumentsResponse",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L3718-L3724 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | CreateDocumentRequest | function CreateDocumentRequest(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
... | javascript | function CreateDocumentRequest(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
... | [
"function",
"CreateDocumentRequest",
"(",
"properties",
")",
"{",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";",
"i",
"<",
"keys",
".",
"length",
";",
"++",
"i",
... | Properties of a CreateDocumentRequest.
@memberof google.firestore.v1
@interface ICreateDocumentRequest
@property {string|null} [parent] CreateDocumentRequest parent
@property {string|null} [collectionId] CreateDocumentRequest collectionId
@property {string|null} [documentId] CreateDocumentRequest documentId
@property {... | [
"Properties",
"of",
"a",
"CreateDocumentRequest",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L3766-L3771 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | UpdateDocumentRequest | function UpdateDocumentRequest(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
... | javascript | function UpdateDocumentRequest(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
... | [
"function",
"UpdateDocumentRequest",
"(",
"properties",
")",
"{",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";",
"i",
"<",
"keys",
".",
"length",
";",
"++",
"i",
... | Properties of an UpdateDocumentRequest.
@memberof google.firestore.v1
@interface IUpdateDocumentRequest
@property {google.firestore.v1.IDocument|null} [document] UpdateDocumentRequest document
@property {google.firestore.v1.IDocumentMask|null} [updateMask] UpdateDocumentRequest updateMask
@property {google.firestore.v1... | [
"Properties",
"of",
"an",
"UpdateDocumentRequest",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L3836-L3841 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | DeleteDocumentRequest | function DeleteDocumentRequest(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
... | javascript | function DeleteDocumentRequest(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
... | [
"function",
"DeleteDocumentRequest",
"(",
"properties",
")",
"{",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";",
"i",
"<",
"keys",
".",
"length",
";",
"++",
"i",
... | Properties of a DeleteDocumentRequest.
@memberof google.firestore.v1
@interface IDeleteDocumentRequest
@property {string|null} [name] DeleteDocumentRequest name
@property {google.firestore.v1.IPrecondition|null} [currentDocument] DeleteDocumentRequest currentDocument
Constructs a new DeleteDocumentRequest.
@memberof ... | [
"Properties",
"of",
"a",
"DeleteDocumentRequest",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L3896-L3901 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | BatchGetDocumentsRequest | function BatchGetDocumentsRequest(properties) {
this.documents = [];
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[key... | javascript | function BatchGetDocumentsRequest(properties) {
this.documents = [];
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[key... | [
"function",
"BatchGetDocumentsRequest",
"(",
"properties",
")",
"{",
"this",
".",
"documents",
"=",
"[",
"]",
";",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";",
"... | Properties of a BatchGetDocumentsRequest.
@memberof google.firestore.v1
@interface IBatchGetDocumentsRequest
@property {string|null} [database] BatchGetDocumentsRequest database
@property {Array.<string>|null} [documents] BatchGetDocumentsRequest documents
@property {google.firestore.v1.IDocumentMask|null} [mask] Batch... | [
"Properties",
"of",
"a",
"BatchGetDocumentsRequest",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L3944-L3950 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | BatchGetDocumentsResponse | function BatchGetDocumentsResponse(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
... | javascript | function BatchGetDocumentsResponse(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
... | [
"function",
"BatchGetDocumentsResponse",
"(",
"properties",
")",
"{",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";",
"i",
"<",
"keys",
".",
"length",
";",
"++",
"i... | Properties of a BatchGetDocumentsResponse.
@memberof google.firestore.v1
@interface IBatchGetDocumentsResponse
@property {google.firestore.v1.IDocument|null} [found] BatchGetDocumentsResponse found
@property {string|null} [missing] BatchGetDocumentsResponse missing
@property {Uint8Array|null} [transaction] BatchGetDocu... | [
"Properties",
"of",
"a",
"BatchGetDocumentsResponse",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L4037-L4042 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | BeginTransactionRequest | function BeginTransactionRequest(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
... | javascript | function BeginTransactionRequest(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
... | [
"function",
"BeginTransactionRequest",
"(",
"properties",
")",
"{",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";",
"i",
"<",
"keys",
".",
"length",
";",
"++",
"i",... | Properties of a BeginTransactionRequest.
@memberof google.firestore.v1
@interface IBeginTransactionRequest
@property {string|null} [database] BeginTransactionRequest database
@property {google.firestore.v1.ITransactionOptions|null} [options] BeginTransactionRequest options
Constructs a new BeginTransactionRequest.
@m... | [
"Properties",
"of",
"a",
"BeginTransactionRequest",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L4111-L4116 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | BeginTransactionResponse | function BeginTransactionResponse(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
... | javascript | function BeginTransactionResponse(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
... | [
"function",
"BeginTransactionResponse",
"(",
"properties",
")",
"{",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";",
"i",
"<",
"keys",
".",
"length",
";",
"++",
"i"... | Properties of a BeginTransactionResponse.
@memberof google.firestore.v1
@interface IBeginTransactionResponse
@property {Uint8Array|null} [transaction] BeginTransactionResponse transaction
Constructs a new BeginTransactionResponse.
@memberof google.firestore.v1
@classdesc Represents a BeginTransactionResponse.
@implem... | [
"Properties",
"of",
"a",
"BeginTransactionResponse",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L4154-L4159 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | CommitRequest | function CommitRequest(properties) {
this.writes = [];
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = proper... | javascript | function CommitRequest(properties) {
this.writes = [];
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = proper... | [
"function",
"CommitRequest",
"(",
"properties",
")",
"{",
"this",
".",
"writes",
"=",
"[",
"]",
";",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";",
"i",
"<",
"... | Properties of a CommitRequest.
@memberof google.firestore.v1
@interface ICommitRequest
@property {string|null} [database] CommitRequest database
@property {Array.<google.firestore.v1.IWrite>|null} [writes] CommitRequest writes
@property {Uint8Array|null} [transaction] CommitRequest transaction
Constructs a new Commit... | [
"Properties",
"of",
"a",
"CommitRequest",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L4191-L4197 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | CommitResponse | function CommitResponse(properties) {
this.writeResults = [];
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] =... | javascript | function CommitResponse(properties) {
this.writeResults = [];
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] =... | [
"function",
"CommitResponse",
"(",
"properties",
")",
"{",
"this",
".",
"writeResults",
"=",
"[",
"]",
";",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";",
"i",
"... | Properties of a CommitResponse.
@memberof google.firestore.v1
@interface ICommitResponse
@property {Array.<google.firestore.v1.IWriteResult>|null} [writeResults] CommitResponse writeResults
@property {google.protobuf.ITimestamp|null} [commitTime] CommitResponse commitTime
Constructs a new CommitResponse.
@memberof go... | [
"Properties",
"of",
"a",
"CommitResponse",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L4244-L4250 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | RollbackRequest | function RollbackRequest(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
} | javascript | function RollbackRequest(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
} | [
"function",
"RollbackRequest",
"(",
"properties",
")",
"{",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";",
"i",
"<",
"keys",
".",
"length",
";",
"++",
"i",
")",
... | Properties of a RollbackRequest.
@memberof google.firestore.v1
@interface IRollbackRequest
@property {string|null} [database] RollbackRequest database
@property {Uint8Array|null} [transaction] RollbackRequest transaction
Constructs a new RollbackRequest.
@memberof google.firestore.v1
@classdesc Represents a RollbackR... | [
"Properties",
"of",
"a",
"RollbackRequest",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L4289-L4294 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | RunQueryRequest | function RunQueryRequest(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
} | javascript | function RunQueryRequest(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
} | [
"function",
"RunQueryRequest",
"(",
"properties",
")",
"{",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";",
"i",
"<",
"keys",
".",
"length",
";",
"++",
"i",
")",
... | Properties of a RunQueryRequest.
@memberof google.firestore.v1
@interface IRunQueryRequest
@property {string|null} [parent] RunQueryRequest parent
@property {google.firestore.v1.IStructuredQuery|null} [structuredQuery] RunQueryRequest structuredQuery
@property {Uint8Array|null} [transaction] RunQueryRequest transaction... | [
"Properties",
"of",
"a",
"RunQueryRequest",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L4336-L4341 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | RunQueryResponse | function RunQueryResponse(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
} | javascript | function RunQueryResponse(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
} | [
"function",
"RunQueryResponse",
"(",
"properties",
")",
"{",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";",
"i",
"<",
"keys",
".",
"length",
";",
"++",
"i",
")",... | Properties of a RunQueryResponse.
@memberof google.firestore.v1
@interface IRunQueryResponse
@property {Uint8Array|null} [transaction] RunQueryResponse transaction
@property {google.firestore.v1.IDocument|null} [document] RunQueryResponse document
@property {google.protobuf.ITimestamp|null} [readTime] RunQueryResponse ... | [
"Properties",
"of",
"a",
"RunQueryResponse",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L4431-L4436 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | WriteRequest | function WriteRequest(properties) {
this.writes = [];
this.labels = {};
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
... | javascript | function WriteRequest(properties) {
this.writes = [];
this.labels = {};
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
... | [
"function",
"WriteRequest",
"(",
"properties",
")",
"{",
"this",
".",
"writes",
"=",
"[",
"]",
";",
"this",
".",
"labels",
"=",
"{",
"}",
";",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
"... | Properties of a WriteRequest.
@memberof google.firestore.v1
@interface IWriteRequest
@property {string|null} [database] WriteRequest database
@property {string|null} [streamId] WriteRequest streamId
@property {Array.<google.firestore.v1.IWrite>|null} [writes] WriteRequest writes
@property {Uint8Array|null} [streamToken... | [
"Properties",
"of",
"a",
"WriteRequest",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L4494-L4501 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | WriteResponse | function WriteResponse(properties) {
this.writeResults = [];
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = ... | javascript | function WriteResponse(properties) {
this.writeResults = [];
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = ... | [
"function",
"WriteResponse",
"(",
"properties",
")",
"{",
"this",
".",
"writeResults",
"=",
"[",
"]",
";",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";",
"i",
"<... | Properties of a WriteResponse.
@memberof google.firestore.v1
@interface IWriteResponse
@property {string|null} [streamId] WriteResponse streamId
@property {Uint8Array|null} [streamToken] WriteResponse streamToken
@property {Array.<google.firestore.v1.IWriteResult>|null} [writeResults] WriteResponse writeResults
@proper... | [
"Properties",
"of",
"a",
"WriteResponse",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L4566-L4572 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | ListenRequest | function ListenRequest(properties) {
this.labels = {};
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = proper... | javascript | function ListenRequest(properties) {
this.labels = {};
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = proper... | [
"function",
"ListenRequest",
"(",
"properties",
")",
"{",
"this",
".",
"labels",
"=",
"{",
"}",
";",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";",
"i",
"<",
"... | Properties of a ListenRequest.
@memberof google.firestore.v1
@interface IListenRequest
@property {string|null} [database] ListenRequest database
@property {google.firestore.v1.ITarget|null} [addTarget] ListenRequest addTarget
@property {number|null} [removeTarget] ListenRequest removeTarget
@property {Object.<string,st... | [
"Properties",
"of",
"a",
"ListenRequest",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L4629-L4635 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | ListenResponse | function ListenResponse(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
} | javascript | function ListenResponse(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
} | [
"function",
"ListenResponse",
"(",
"properties",
")",
"{",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";",
"i",
"<",
"keys",
".",
"length",
";",
"++",
"i",
")",
... | Properties of a ListenResponse.
@memberof google.firestore.v1
@interface IListenResponse
@property {google.firestore.v1.ITargetChange|null} [targetChange] ListenResponse targetChange
@property {google.firestore.v1.IDocumentChange|null} [documentChange] ListenResponse documentChange
@property {google.firestore.v1.IDocum... | [
"Properties",
"of",
"a",
"ListenResponse",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L4707-L4712 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | Target | function Target(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
} | javascript | function Target(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
} | [
"function",
"Target",
"(",
"properties",
")",
"{",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";",
"i",
"<",
"keys",
".",
"length",
";",
"++",
"i",
")",
"if",
... | Properties of a Target.
@memberof google.firestore.v1
@interface ITarget
@property {google.firestore.v1.Target.IQueryTarget|null} [query] Target query
@property {google.firestore.v1.Target.IDocumentsTarget|null} [documents] Target documents
@property {Uint8Array|null} [resumeToken] Target resumeToken
@property {google.... | [
"Properties",
"of",
"a",
"Target",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L4793-L4798 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | QueryTarget | function QueryTarget(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
... | javascript | function QueryTarget(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
... | [
"function",
"QueryTarget",
"(",
"properties",
")",
"{",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";",
"i",
"<",
"keys",
".",
"length",
";",
"++",
"i",
")",
"i... | Properties of a QueryTarget.
@memberof google.firestore.v1.Target
@interface IQueryTarget
@property {string|null} [parent] QueryTarget parent
@property {google.firestore.v1.IStructuredQuery|null} [structuredQuery] QueryTarget structuredQuery
Constructs a new QueryTarget.
@memberof google.firestore.v1.Target
@classdes... | [
"Properties",
"of",
"a",
"QueryTarget",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L4927-L4932 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | TargetChange | function TargetChange(properties) {
this.targetIds = [];
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = prop... | javascript | function TargetChange(properties) {
this.targetIds = [];
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = prop... | [
"function",
"TargetChange",
"(",
"properties",
")",
"{",
"this",
".",
"targetIds",
"=",
"[",
"]",
";",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";",
"i",
"<",
... | Properties of a TargetChange.
@memberof google.firestore.v1
@interface ITargetChange
@property {google.firestore.v1.TargetChange.TargetChangeType|null} [targetChangeType] TargetChange targetChangeType
@property {Array.<number>|null} [targetIds] TargetChange targetIds
@property {google.rpc.IStatus|null} [cause] TargetCh... | [
"Properties",
"of",
"a",
"TargetChange",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L4991-L4997 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | ListCollectionIdsRequest | function ListCollectionIdsRequest(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
... | javascript | function ListCollectionIdsRequest(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
... | [
"function",
"ListCollectionIdsRequest",
"(",
"properties",
")",
"{",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";",
"i",
"<",
"keys",
".",
"length",
";",
"++",
"i"... | Properties of a ListCollectionIdsRequest.
@memberof google.firestore.v1
@interface IListCollectionIdsRequest
@property {string|null} [parent] ListCollectionIdsRequest parent
@property {number|null} [pageSize] ListCollectionIdsRequest pageSize
@property {string|null} [pageToken] ListCollectionIdsRequest pageToken
Cons... | [
"Properties",
"of",
"a",
"ListCollectionIdsRequest",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L5081-L5086 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | ListCollectionIdsResponse | function ListCollectionIdsResponse(properties) {
this.collectionIds = [];
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
thi... | javascript | function ListCollectionIdsResponse(properties) {
this.collectionIds = [];
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
thi... | [
"function",
"ListCollectionIdsResponse",
"(",
"properties",
")",
"{",
"this",
".",
"collectionIds",
"=",
"[",
"]",
";",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";"... | Properties of a ListCollectionIdsResponse.
@memberof google.firestore.v1
@interface IListCollectionIdsResponse
@property {Array.<string>|null} [collectionIds] ListCollectionIdsResponse collectionIds
@property {string|null} [nextPageToken] ListCollectionIdsResponse nextPageToken
Constructs a new ListCollectionIdsRespo... | [
"Properties",
"of",
"a",
"ListCollectionIdsResponse",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L5133-L5139 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | StructuredQuery | function StructuredQuery(properties) {
this.from = [];
this.orderBy = [];
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
... | javascript | function StructuredQuery(properties) {
this.from = [];
this.orderBy = [];
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
... | [
"function",
"StructuredQuery",
"(",
"properties",
")",
"{",
"this",
".",
"from",
"=",
"[",
"]",
";",
"this",
".",
"orderBy",
"=",
"[",
"]",
";",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
... | Properties of a StructuredQuery.
@memberof google.firestore.v1
@interface IStructuredQuery
@property {google.firestore.v1.StructuredQuery.IProjection|null} [select] StructuredQuery select
@property {Array.<google.firestore.v1.StructuredQuery.ICollectionSelector>|null} [from] StructuredQuery from
@property {google.fires... | [
"Properties",
"of",
"a",
"StructuredQuery",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L5184-L5191 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | CollectionSelector | function CollectionSelector(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
... | javascript | function CollectionSelector(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
... | [
"function",
"CollectionSelector",
"(",
"properties",
")",
"{",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";",
"i",
"<",
"keys",
".",
"length",
";",
"++",
"i",
")... | Properties of a CollectionSelector.
@memberof google.firestore.v1.StructuredQuery
@interface ICollectionSelector
@property {string|null} [collectionId] CollectionSelector collectionId
@property {boolean|null} [allDescendants] CollectionSelector allDescendants
Constructs a new CollectionSelector.
@memberof google.fire... | [
"Properties",
"of",
"a",
"CollectionSelector",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L5275-L5280 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | Filter | function Filter(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
... | javascript | function Filter(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
... | [
"function",
"Filter",
"(",
"properties",
")",
"{",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";",
"i",
"<",
"keys",
".",
"length",
";",
"++",
"i",
")",
"if",
... | Properties of a Filter.
@memberof google.firestore.v1.StructuredQuery
@interface IFilter
@property {google.firestore.v1.StructuredQuery.ICompositeFilter|null} [compositeFilter] Filter compositeFilter
@property {google.firestore.v1.StructuredQuery.IFieldFilter|null} [fieldFilter] Filter fieldFilter
@property {google.fir... | [
"Properties",
"of",
"a",
"Filter",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L5320-L5325 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | CompositeFilter | function CompositeFilter(properties) {
this.filters = [];
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
... | javascript | function CompositeFilter(properties) {
this.filters = [];
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
... | [
"function",
"CompositeFilter",
"(",
"properties",
")",
"{",
"this",
".",
"filters",
"=",
"[",
"]",
";",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";",
"i",
"<",
... | Properties of a CompositeFilter.
@memberof google.firestore.v1.StructuredQuery
@interface ICompositeFilter
@property {google.firestore.v1.StructuredQuery.CompositeFilter.Operator|null} [op] CompositeFilter op
@property {Array.<google.firestore.v1.StructuredQuery.IFilter>|null} [filters] CompositeFilter filters
Constr... | [
"Properties",
"of",
"a",
"CompositeFilter",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L5386-L5392 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | FieldFilter | function FieldFilter(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
... | javascript | function FieldFilter(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
... | [
"function",
"FieldFilter",
"(",
"properties",
")",
"{",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";",
"i",
"<",
"keys",
".",
"length",
";",
"++",
"i",
")",
"i... | Properties of a FieldFilter.
@memberof google.firestore.v1.StructuredQuery
@interface IFieldFilter
@property {google.firestore.v1.StructuredQuery.IFieldReference|null} [field] FieldFilter field
@property {google.firestore.v1.StructuredQuery.FieldFilter.Operator|null} [op] FieldFilter op
@property {google.firestore.v1.I... | [
"Properties",
"of",
"a",
"FieldFilter",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L5446-L5451 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | UnaryFilter | function UnaryFilter(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
... | javascript | function UnaryFilter(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
... | [
"function",
"UnaryFilter",
"(",
"properties",
")",
"{",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";",
"i",
"<",
"keys",
".",
"length",
";",
"++",
"i",
")",
"i... | Properties of an UnaryFilter.
@memberof google.firestore.v1.StructuredQuery
@interface IUnaryFilter
@property {google.firestore.v1.StructuredQuery.UnaryFilter.Operator|null} [op] UnaryFilter op
@property {google.firestore.v1.StructuredQuery.IFieldReference|null} [field] UnaryFilter field
Constructs a new UnaryFilter.... | [
"Properties",
"of",
"an",
"UnaryFilter",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L5522-L5527 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | FieldReference | function FieldReference(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
... | javascript | function FieldReference(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
... | [
"function",
"FieldReference",
"(",
"properties",
")",
"{",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";",
"i",
"<",
"keys",
".",
"length",
";",
"++",
"i",
")",
... | Properties of a FieldReference.
@memberof google.firestore.v1.StructuredQuery
@interface IFieldReference
@property {string|null} [fieldPath] FieldReference fieldPath
Constructs a new FieldReference.
@memberof google.firestore.v1.StructuredQuery
@classdesc Represents a FieldReference.
@implements IFieldReference
@cons... | [
"Properties",
"of",
"a",
"FieldReference",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L5595-L5600 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | Order | function Order(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
... | javascript | function Order(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
... | [
"function",
"Order",
"(",
"properties",
")",
"{",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";",
"i",
"<",
"keys",
".",
"length",
";",
"++",
"i",
")",
"if",
... | Properties of an Order.
@memberof google.firestore.v1.StructuredQuery
@interface IOrder
@property {google.firestore.v1.StructuredQuery.IFieldReference|null} [field] Order field
@property {google.firestore.v1.StructuredQuery.Direction|null} [direction] Order direction
Constructs a new Order.
@memberof google.firestore... | [
"Properties",
"of",
"an",
"Order",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L5631-L5636 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | Cursor | function Cursor(properties) {
this.values = [];
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[ke... | javascript | function Cursor(properties) {
this.values = [];
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[ke... | [
"function",
"Cursor",
"(",
"properties",
")",
"{",
"this",
".",
"values",
"=",
"[",
"]",
";",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";",
"i",
"<",
"keys",
... | Properties of a Cursor.
@memberof google.firestore.v1
@interface ICursor
@property {Array.<google.firestore.v1.IValue>|null} [values] Cursor values
@property {boolean|null} [before] Cursor before
Constructs a new Cursor.
@memberof google.firestore.v1
@classdesc Represents a Cursor.
@implements ICursor
@constructor
@p... | [
"Properties",
"of",
"a",
"Cursor",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L5730-L5736 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | Write | function Write(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
} | javascript | function Write(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
} | [
"function",
"Write",
"(",
"properties",
")",
"{",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";",
"i",
"<",
"keys",
".",
"length",
";",
"++",
"i",
")",
"if",
... | Properties of a Write.
@memberof google.firestore.v1
@interface IWrite
@property {google.firestore.v1.IDocument|null} [update] Write update
@property {string|null} ["delete"] Write delete
@property {google.firestore.v1.IDocumentTransform|null} [transform] Write transform
@property {google.firestore.v1.IDocumentMask|nul... | [
"Properties",
"of",
"a",
"Write",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L5778-L5783 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | DocumentTransform | function DocumentTransform(properties) {
this.fieldTransforms = [];
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys... | javascript | function DocumentTransform(properties) {
this.fieldTransforms = [];
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys... | [
"function",
"DocumentTransform",
"(",
"properties",
")",
"{",
"this",
".",
"fieldTransforms",
"=",
"[",
"]",
";",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";",
"i... | Properties of a DocumentTransform.
@memberof google.firestore.v1
@interface IDocumentTransform
@property {string|null} [document] DocumentTransform document
@property {Array.<google.firestore.v1.DocumentTransform.IFieldTransform>|null} [fieldTransforms] DocumentTransform fieldTransforms
Constructs a new DocumentTrans... | [
"Properties",
"of",
"a",
"DocumentTransform",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L5860-L5866 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | FieldTransform | function FieldTransform(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
... | javascript | function FieldTransform(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
... | [
"function",
"FieldTransform",
"(",
"properties",
")",
"{",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";",
"i",
"<",
"keys",
".",
"length",
";",
"++",
"i",
")",
... | Properties of a FieldTransform.
@memberof google.firestore.v1.DocumentTransform
@interface IFieldTransform
@property {string|null} [fieldPath] FieldTransform fieldPath
@property {google.firestore.v1.DocumentTransform.FieldTransform.ServerValue|null} [setToServerValue] FieldTransform setToServerValue
@property {google.f... | [
"Properties",
"of",
"a",
"FieldTransform",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L5907-L5912 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | WriteResult | function WriteResult(properties) {
this.transformResults = [];
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] ... | javascript | function WriteResult(properties) {
this.transformResults = [];
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] ... | [
"function",
"WriteResult",
"(",
"properties",
")",
"{",
"this",
".",
"transformResults",
"=",
"[",
"]",
";",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";",
"i",
... | Properties of a WriteResult.
@memberof google.firestore.v1
@interface IWriteResult
@property {google.protobuf.ITimestamp|null} [updateTime] WriteResult updateTime
@property {Array.<google.firestore.v1.IValue>|null} [transformResults] WriteResult transformResults
Constructs a new WriteResult.
@memberof google.firestor... | [
"Properties",
"of",
"a",
"WriteResult",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L6022-L6028 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | DocumentChange | function DocumentChange(properties) {
this.targetIds = [];
this.removedTargetIds = [];
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
... | javascript | function DocumentChange(properties) {
this.targetIds = [];
this.removedTargetIds = [];
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
... | [
"function",
"DocumentChange",
"(",
"properties",
")",
"{",
"this",
".",
"targetIds",
"=",
"[",
"]",
";",
"this",
".",
"removedTargetIds",
"=",
"[",
"]",
";",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"p... | Properties of a DocumentChange.
@memberof google.firestore.v1
@interface IDocumentChange
@property {google.firestore.v1.IDocument|null} [document] DocumentChange document
@property {Array.<number>|null} [targetIds] DocumentChange targetIds
@property {Array.<number>|null} [removedTargetIds] DocumentChange removedTargetI... | [
"Properties",
"of",
"a",
"DocumentChange",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L6068-L6075 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | DocumentDelete | function DocumentDelete(properties) {
this.removedTargetIds = [];
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i... | javascript | function DocumentDelete(properties) {
this.removedTargetIds = [];
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i... | [
"function",
"DocumentDelete",
"(",
"properties",
")",
"{",
"this",
".",
"removedTargetIds",
"=",
"[",
"]",
";",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";",
"i",... | Properties of a DocumentDelete.
@memberof google.firestore.v1
@interface IDocumentDelete
@property {string|null} [document] DocumentDelete document
@property {Array.<number>|null} [removedTargetIds] DocumentDelete removedTargetIds
@property {google.protobuf.ITimestamp|null} [readTime] DocumentDelete readTime
Construc... | [
"Properties",
"of",
"a",
"DocumentDelete",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L6123-L6129 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | DocumentRemove | function DocumentRemove(properties) {
this.removedTargetIds = [];
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i... | javascript | function DocumentRemove(properties) {
this.removedTargetIds = [];
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i... | [
"function",
"DocumentRemove",
"(",
"properties",
")",
"{",
"this",
".",
"removedTargetIds",
"=",
"[",
"]",
";",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";",
"i",... | Properties of a DocumentRemove.
@memberof google.firestore.v1
@interface IDocumentRemove
@property {string|null} [document] DocumentRemove document
@property {Array.<number>|null} [removedTargetIds] DocumentRemove removedTargetIds
@property {google.protobuf.ITimestamp|null} [readTime] DocumentRemove readTime
Construc... | [
"Properties",
"of",
"a",
"DocumentRemove",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L6177-L6183 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | ExistenceFilter | function ExistenceFilter(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
} | javascript | function ExistenceFilter(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
} | [
"function",
"ExistenceFilter",
"(",
"properties",
")",
"{",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";",
"i",
"<",
"keys",
".",
"length",
";",
"++",
"i",
")",
... | Properties of an ExistenceFilter.
@memberof google.firestore.v1
@interface IExistenceFilter
@property {number|null} [targetId] ExistenceFilter targetId
@property {number|null} [count] ExistenceFilter count
Constructs a new ExistenceFilter.
@memberof google.firestore.v1
@classdesc Represents an ExistenceFilter.
@imple... | [
"Properties",
"of",
"an",
"ExistenceFilter",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L6230-L6235 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | Http | function Http(properties) {
this.rules = [];
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
} | javascript | function Http(properties) {
this.rules = [];
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
} | [
"function",
"Http",
"(",
"properties",
")",
"{",
"this",
".",
"rules",
"=",
"[",
"]",
";",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";",
"i",
"<",
"keys",
"... | Properties of a Http.
@memberof google.api
@interface IHttp
@property {Array.<google.api.IHttpRule>|null} [rules] Http rules
Constructs a new Http.
@memberof google.api
@classdesc Represents a Http.
@implements IHttp
@constructor
@param {google.api.IHttp=} [properties] Properties to set | [
"Properties",
"of",
"a",
"Http",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L6288-L6294 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | HttpRule | function HttpRule(properties) {
this.additionalBindings = [];
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]]... | javascript | function HttpRule(properties) {
this.additionalBindings = [];
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]]... | [
"function",
"HttpRule",
"(",
"properties",
")",
"{",
"this",
".",
"additionalBindings",
"=",
"[",
"]",
";",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";",
"i",
"... | Properties of a HttpRule.
@memberof google.api
@interface IHttpRule
@property {string|null} [get] HttpRule get
@property {string|null} [put] HttpRule put
@property {string|null} [post] HttpRule post
@property {string|null} ["delete"] HttpRule delete
@property {string|null} [patch] HttpRule patch
@property {google.api.I... | [
"Properties",
"of",
"a",
"HttpRule",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L6332-L6338 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | CustomHttpPattern | function CustomHttpPattern(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
} | javascript | function CustomHttpPattern(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
} | [
"function",
"CustomHttpPattern",
"(",
"properties",
")",
"{",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";",
"i",
"<",
"keys",
".",
"length",
";",
"++",
"i",
")"... | Properties of a CustomHttpPattern.
@memberof google.api
@interface ICustomHttpPattern
@property {string|null} [kind] CustomHttpPattern kind
@property {string|null} [path] CustomHttpPattern path
Constructs a new CustomHttpPattern.
@memberof google.api
@classdesc Represents a CustomHttpPattern.
@implements ICustomHttpP... | [
"Properties",
"of",
"a",
"CustomHttpPattern",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L6447-L6452 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | LatLng | function LatLng(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
} | javascript | function LatLng(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
} | [
"function",
"LatLng",
"(",
"properties",
")",
"{",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";",
"i",
"<",
"keys",
".",
"length",
";",
"++",
"i",
")",
"if",
... | Properties of a LatLng.
@memberof google.type
@interface ILatLng
@property {number|null} [latitude] LatLng latitude
@property {number|null} [longitude] LatLng longitude
Constructs a new LatLng.
@memberof google.type
@classdesc Represents a LatLng.
@implements ILatLng
@constructor
@param {google.type.ILatLng=} [proper... | [
"Properties",
"of",
"a",
"LatLng",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L6503-L6508 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | Status | function Status(properties) {
this.details = [];
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
... | javascript | function Status(properties) {
this.details = [];
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
... | [
"function",
"Status",
"(",
"properties",
")",
"{",
"this",
".",
"details",
"=",
"[",
"]",
";",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";",
"i",
"<",
"keys",... | Properties of a Status.
@memberof google.rpc
@interface IStatus
@property {number|null} [code] Status code
@property {string|null} [message] Status message
@property {Array.<google.protobuf.IAny>|null} [details] Status details
Constructs a new Status.
@memberof google.rpc
@classdesc Represents a Status.
@implements I... | [
"Properties",
"of",
"a",
"Status",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L6560-L6566 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | Operation | function Operation(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
} | javascript | function Operation(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
} | [
"function",
"Operation",
"(",
"properties",
")",
"{",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";",
"i",
"<",
"keys",
".",
"length",
";",
"++",
"i",
")",
"if"... | Properties of an Operation.
@memberof google.longrunning
@interface IOperation
@property {string|null} [name] Operation name
@property {google.protobuf.IAny|null} [metadata] Operation metadata
@property {boolean|null} [done] Operation done
@property {google.rpc.IStatus|null} [error] Operation error
@property {google.pr... | [
"Properties",
"of",
"an",
"Operation",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L6814-L6819 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | GetOperationRequest | function GetOperationRequest(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
} | javascript | function GetOperationRequest(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
} | [
"function",
"GetOperationRequest",
"(",
"properties",
")",
"{",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";",
"i",
"<",
"keys",
".",
"length",
";",
"++",
"i",
"... | Properties of a GetOperationRequest.
@memberof google.longrunning
@interface IGetOperationRequest
@property {string|null} [name] GetOperationRequest name
Constructs a new GetOperationRequest.
@memberof google.longrunning
@classdesc Represents a GetOperationRequest.
@implements IGetOperationRequest
@constructor
@param... | [
"Properties",
"of",
"a",
"GetOperationRequest",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L6895-L6900 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | ListOperationsRequest | function ListOperationsRequest(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
} | javascript | function ListOperationsRequest(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
} | [
"function",
"ListOperationsRequest",
"(",
"properties",
")",
"{",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";",
"i",
"<",
"keys",
".",
"length",
";",
"++",
"i",
... | Properties of a ListOperationsRequest.
@memberof google.longrunning
@interface IListOperationsRequest
@property {string|null} [name] ListOperationsRequest name
@property {string|null} [filter] ListOperationsRequest filter
@property {number|null} [pageSize] ListOperationsRequest pageSize
@property {string|null} [pageTok... | [
"Properties",
"of",
"a",
"ListOperationsRequest",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L6933-L6938 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | ListOperationsResponse | function ListOperationsResponse(properties) {
this.operations = [];
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[ke... | javascript | function ListOperationsResponse(properties) {
this.operations = [];
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[ke... | [
"function",
"ListOperationsResponse",
"(",
"properties",
")",
"{",
"this",
".",
"operations",
"=",
"[",
"]",
";",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";",
"i... | Properties of a ListOperationsResponse.
@memberof google.longrunning
@interface IListOperationsResponse
@property {Array.<google.longrunning.IOperation>|null} [operations] ListOperationsResponse operations
@property {string|null} [nextPageToken] ListOperationsResponse nextPageToken
Constructs a new ListOperationsResp... | [
"Properties",
"of",
"a",
"ListOperationsResponse",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L6993-L6999 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | CancelOperationRequest | function CancelOperationRequest(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
} | javascript | function CancelOperationRequest(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
} | [
"function",
"CancelOperationRequest",
"(",
"properties",
")",
"{",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";",
"i",
"<",
"keys",
".",
"length",
";",
"++",
"i",
... | Properties of a CancelOperationRequest.
@memberof google.longrunning
@interface ICancelOperationRequest
@property {string|null} [name] CancelOperationRequest name
Constructs a new CancelOperationRequest.
@memberof google.longrunning
@classdesc Represents a CancelOperationRequest.
@implements ICancelOperationRequest
@... | [
"Properties",
"of",
"a",
"CancelOperationRequest",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L7037-L7042 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | DeleteOperationRequest | function DeleteOperationRequest(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
} | javascript | function DeleteOperationRequest(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
} | [
"function",
"DeleteOperationRequest",
"(",
"properties",
")",
"{",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";",
"i",
"<",
"keys",
".",
"length",
";",
"++",
"i",
... | Properties of a DeleteOperationRequest.
@memberof google.longrunning
@interface IDeleteOperationRequest
@property {string|null} [name] DeleteOperationRequest name
Constructs a new DeleteOperationRequest.
@memberof google.longrunning
@classdesc Represents a DeleteOperationRequest.
@implements IDeleteOperationRequest
@... | [
"Properties",
"of",
"a",
"DeleteOperationRequest",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L7072-L7077 | train |
googleapis/nodejs-firestore | dev/protos/firestore_proto_api.js | WaitOperationRequest | function WaitOperationRequest(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
} | javascript | function WaitOperationRequest(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
} | [
"function",
"WaitOperationRequest",
"(",
"properties",
")",
"{",
"if",
"(",
"properties",
")",
"for",
"(",
"var",
"keys",
"=",
"Object",
".",
"keys",
"(",
"properties",
")",
",",
"i",
"=",
"0",
";",
"i",
"<",
"keys",
".",
"length",
";",
"++",
"i",
... | Properties of a WaitOperationRequest.
@memberof google.longrunning
@interface IWaitOperationRequest
@property {string|null} [name] WaitOperationRequest name
@property {google.protobuf.IDuration|null} [timeout] WaitOperationRequest timeout
Constructs a new WaitOperationRequest.
@memberof google.longrunning
@classdesc ... | [
"Properties",
"of",
"a",
"WaitOperationRequest",
"."
] | c1192504e2d2ebe505aaf952227f377017f43bdc | https://github.com/googleapis/nodejs-firestore/blob/c1192504e2d2ebe505aaf952227f377017f43bdc/dev/protos/firestore_proto_api.js#L7108-L7113 | train |
Subsets and Splits
SQL Console for semeru/code-text-javascript
Retrieves 20,000 non-null code samples labeled as JavaScript, providing a basic overview of the dataset.