public sealed class ProjectProperties : IMessage<ProjectProperties>, IEquatable<ProjectProperties>, IDeepCloneable<ProjectProperties>, IBufferMessage, IMessage
A descriptor for defining project properties for a service. One service may
have many consumer projects, and the service may want to behave differently
depending on some properties on the project. For example, a project may be
associated with a school, or a business, or a government agency, a business
type property on the project may affect how a service responds to the client.
This descriptor defines which properties are allowed to be set on a project.
Example:
project_properties:
properties:
name: NO_WATERMARK
type: BOOL
description: Allows usage of the API without watermarks.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-06-11 UTC."],[[["The `ProjectProperties` class defines properties that can be set on a project, allowing services to behave differently based on these properties."],["This class is part of the `Google.Api` namespace within the `Google.Api.CommonProtos.dll` assembly, and is a `sealed` class."],["The class implements several interfaces, including `IMessage`, `IEquatable`, `IDeepCloneable`, and `IBufferMessage`, demonstrating its role in message handling and data management."],["`ProjectProperties` include a list of per-consumer project-specific properties, such as `NO_WATERMARK` and `EXTENDED_TILE_CACHE_PERIOD`, that can affect how a service interacts with the client."],["The class offers methods for managing instances such as `CalculateSize`, `Clone`, `Equals`, `MergeFrom`, and `WriteTo`, along with constructors to initialize the class."]]],[]]